public static enum ClassTracer.Input extends 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(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(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–2024 Eclipse Foundation. All rights reserved.