public static enum ClassTracer.State extends java.lang.Enum<ClassTracer.State>
Modifier and Type | Method and Description |
---|---|
abstract ClassTracer.State |
transition(Util util,
org.objectweb.asm.MethodVisitor mv,
ClassTracer.Input input) |
static ClassTracer.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClassTracer.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassTracer.State NULL1
public static final ClassTracer.State NULL2
public static final ClassTracer.State NORMAL
public static ClassTracer.State[] values()
for (ClassTracer.State c : ClassTracer.State.values()) System.out.println(c);
public static ClassTracer.State 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 nullpublic abstract ClassTracer.State transition(Util util, org.objectweb.asm.MethodVisitor mv, ClassTracer.Input input)