public static enum EnhanceTool.ProcessingMode extends java.lang.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(java.lang.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(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null