public static enum ClassTracer.Input extends java.lang.Enum<ClassTracer.Input>
| Enum Constant and Description |
|---|
ACONST_NULL_BC |
ICONST_0_BC |
INFO_METHOD_CALL |
OTHER |
| Modifier and Type | Method and Description |
|---|---|
static ClassTracer.Input |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClassTracer.Input[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassTracer.Input ACONST_NULL_BC
public static final ClassTracer.Input ICONST_0_BC
public static final ClassTracer.Input INFO_METHOD_CALL
public static final ClassTracer.Input OTHER
public static ClassTracer.Input[] values()
for (ClassTracer.Input c : ClassTracer.Input.values()) System.out.println(c);
public static ClassTracer.Input 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