public static enum IndyInterface.CALL_TYPES extends java.lang.Enum<IndyInterface.CALL_TYPES>
Enum Constant | Description |
---|---|
CAST |
Cast invocation type
|
GET |
Get property invocation type
|
INIT |
Constructor invocation type
|
METHOD |
Method invocation type
|
SET |
Set property invocation type
|
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
getCallSiteName() |
Returns the name of the call site type
|
static IndyInterface.CALL_TYPES |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static IndyInterface.CALL_TYPES[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndyInterface.CALL_TYPES METHOD
public static final IndyInterface.CALL_TYPES INIT
public static final IndyInterface.CALL_TYPES GET
public static final IndyInterface.CALL_TYPES SET
public static final IndyInterface.CALL_TYPES CAST
public static IndyInterface.CALL_TYPES[] values()
for (IndyInterface.CALL_TYPES c : IndyInterface.CALL_TYPES.values()) System.out.println(c);
public static IndyInterface.CALL_TYPES 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 java.lang.String getCallSiteName()