public static enum EnhanceTool.ProcessingMode extends Enum<EnhanceTool.ProcessingMode>
| Enum Constant and Description |
|---|
TimingPoints
Only generate the timing points file: no changes to monitored class
bytecode.
|
TraceEnhance
Update the class schema and insert tracing code.
|
UpdateSchemas
Update the class schemas for monitored classes, but don't insert
the tracing code.
|
| Modifier and Type | Method and Description |
|---|---|
static EnhanceTool.ProcessingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnhanceTool.ProcessingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnhanceTool.ProcessingMode TimingPoints
public static final EnhanceTool.ProcessingMode UpdateSchemas
public static final EnhanceTool.ProcessingMode TraceEnhance
public static EnhanceTool.ProcessingMode[] values()
for (EnhanceTool.ProcessingMode c : EnhanceTool.ProcessingMode.values()) System.out.println(c);
public static EnhanceTool.ProcessingMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2011–2018 Eclipse Foundation. All rights reserved.