private static enum CheckMethodAdapter.Method extends java.lang.Enum<CheckMethodAdapter.Method>
Enum Constant and Description |
---|
VISIT_FIELD_INSN |
VISIT_INSN |
VISIT_INT_INSN |
VISIT_JUMP_INSN |
VISIT_METHOD_INSN |
VISIT_TYPE_INSN |
VISIT_VAR_INSN |
Modifier and Type | Method and Description |
---|---|
static CheckMethodAdapter.Method |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CheckMethodAdapter.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckMethodAdapter.Method VISIT_INSN
public static final CheckMethodAdapter.Method VISIT_INT_INSN
public static final CheckMethodAdapter.Method VISIT_VAR_INSN
public static final CheckMethodAdapter.Method VISIT_TYPE_INSN
public static final CheckMethodAdapter.Method VISIT_FIELD_INSN
public static final CheckMethodAdapter.Method VISIT_METHOD_INSN
public static final CheckMethodAdapter.Method VISIT_JUMP_INSN
public static CheckMethodAdapter.Method[] values()
for (CheckMethodAdapter.Method c : CheckMethodAdapter.Method.values()) System.out.println(c);
public static CheckMethodAdapter.Method 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