Package org.codehaus.groovy.vmplugin.v7
Enum IndyInterface.CallType
- java.lang.Object
- 
- java.lang.Enum<IndyInterface.CallType>
- 
- org.codehaus.groovy.vmplugin.v7.IndyInterface.CallType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<IndyInterface.CallType>
 - Enclosing class:
- IndyInterface
 
 public static enum IndyInterface.CallType extends Enum<IndyInterface.CallType> Enum for easy differentiation between call types
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IndyInterface.CallTypefromCallSiteName(String callSiteName)StringgetCallSiteName()Returns the name of the call site typestatic IndyInterface.CallTypevalueOf(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.
 
- 
- 
- 
Enum Constant Detail- 
METHODpublic static final IndyInterface.CallType METHOD Method invocation type
 - 
INITpublic static final IndyInterface.CallType INIT Constructor invocation type
 - 
GETpublic static final IndyInterface.CallType GET Get property invocation type
 - 
SETpublic static final IndyInterface.CallType SET Set property invocation type
 - 
CASTpublic static final IndyInterface.CallType CAST Cast invocation type
 
- 
 - 
Method Detail- 
valuespublic static IndyInterface.CallType[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IndyInterface.CallType c : IndyInterface.CallType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static IndyInterface.CallType valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
getCallSiteNamepublic String getCallSiteName() Returns the name of the call site type
 - 
fromCallSiteNamepublic static IndyInterface.CallType fromCallSiteName(String callSiteName) 
 
- 
 
-