public static enum IndyInterface.CALL_TYPES extends Enum<IndyInterface.CALL_TYPES>
Enum Constant and 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 and Description |
---|---|
String |
getCallSiteName()
Returns the name of the call site type
|
static IndyInterface.CALL_TYPES |
valueOf(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(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 String getCallSiteName()