public enum MethodHandleBehaviour extends java.lang.Enum<MethodHandleBehaviour>
| Enum Constant and Description |
|---|
GET_FIELD |
GET_STATIC |
INVOKE_INTERFACE |
INVOKE_SPECIAL |
INVOKE_STATIC |
INVOKE_VIRTUAL |
NEW_INVOKE_SPECIAL |
PUT_FIELD |
PUT_STATIC |
| Modifier and Type | Method and Description |
|---|---|
static MethodHandleBehaviour |
decode(byte value) |
static MethodHandleBehaviour |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MethodHandleBehaviour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MethodHandleBehaviour GET_FIELD
public static final MethodHandleBehaviour GET_STATIC
public static final MethodHandleBehaviour PUT_FIELD
public static final MethodHandleBehaviour PUT_STATIC
public static final MethodHandleBehaviour INVOKE_VIRTUAL
public static final MethodHandleBehaviour INVOKE_STATIC
public static final MethodHandleBehaviour INVOKE_SPECIAL
public static final MethodHandleBehaviour NEW_INVOKE_SPECIAL
public static final MethodHandleBehaviour INVOKE_INTERFACE
public static MethodHandleBehaviour[] values()
for (MethodHandleBehaviour c : MethodHandleBehaviour.values()) System.out.println(c);
public static MethodHandleBehaviour 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 static MethodHandleBehaviour decode(byte value)