public static enum CallTargetNode.InvokeKind extends Enum<CallTargetNode.InvokeKind>
Modifier and Type | Field and Description |
---|---|
private boolean |
direct |
Modifier and Type | Method and Description |
---|---|
boolean |
hasReceiver() |
boolean |
isDirect() |
boolean |
isIndirect() |
boolean |
isInterface() |
static CallTargetNode.InvokeKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CallTargetNode.InvokeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallTargetNode.InvokeKind Interface
public static final CallTargetNode.InvokeKind Special
public static final CallTargetNode.InvokeKind Static
public static final CallTargetNode.InvokeKind Virtual
private final boolean direct
public static CallTargetNode.InvokeKind[] values()
for (CallTargetNode.InvokeKind c : CallTargetNode.InvokeKind.values()) System.out.println(c);
public static CallTargetNode.InvokeKind 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 nullpublic boolean hasReceiver()
public boolean isDirect()
public boolean isIndirect()
public boolean isInterface()