public static enum LLJava.HandleKind extends Enum<LLJava.HandleKind>
Enum Constant and Description |
---|
GetField |
GetStatic |
InvokeInterface |
InvokeSpecial |
InvokeStatic |
InvokeVirtual |
NewInvokeSpecial |
PutField |
PutStatic |
Modifier and Type | Method and Description |
---|---|
static LLJava.HandleKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LLJava.HandleKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LLJava.HandleKind GetField
public static final LLJava.HandleKind GetStatic
public static final LLJava.HandleKind PutField
public static final LLJava.HandleKind PutStatic
public static final LLJava.HandleKind InvokeVirtual
public static final LLJava.HandleKind InvokeStatic
public static final LLJava.HandleKind InvokeSpecial
public static final LLJava.HandleKind NewInvokeSpecial
public static final LLJava.HandleKind InvokeInterface
public static LLJava.HandleKind[] values()
for (LLJava.HandleKind c : LLJava.HandleKind.values()) System.out.println(c);
public static LLJava.HandleKind 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 nullsee also the complete user documentation .