public static enum IndyInterface.CallType extends Enum<IndyInterface.CallType>
| 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 |
|---|---|
static IndyInterface.CallType |
fromCallSiteName(String callSiteName) |
String |
getCallSiteName()
Returns the name of the call site type
|
static IndyInterface.CallType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndyInterface.CallType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndyInterface.CallType METHOD
public static final IndyInterface.CallType INIT
public static final IndyInterface.CallType GET
public static final IndyInterface.CallType SET
public static final IndyInterface.CallType CAST
public static IndyInterface.CallType[] values()
for (IndyInterface.CallType c : IndyInterface.CallType.values()) System.out.println(c);
public static IndyInterface.CallType 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()
public static IndyInterface.CallType fromCallSiteName(String callSiteName)