Package org.codehaus.groovy.vmplugin.v7
Enum IndyInterface.CALL_TYPES
- java.lang.Object
- 
- java.lang.Enum<IndyInterface.CALL_TYPES>
- 
- org.codehaus.groovy.vmplugin.v7.IndyInterface.CALL_TYPES
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<IndyInterface.CALL_TYPES>
 - Enclosing class:
- IndyInterface
 
 public static enum IndyInterface.CALL_TYPES extends java.lang.Enum<IndyInterface.CALL_TYPES> Enum for easy differentiation between call types
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCallSiteName()Returns the name of the call site typestatic IndyInterface.CALL_TYPESvalueOf(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.
 
- 
- 
- 
Enum Constant Detail- 
METHODpublic static final IndyInterface.CALL_TYPES METHOD Method invocation type
 - 
INITpublic static final IndyInterface.CALL_TYPES INIT Constructor invocation type
 - 
GETpublic static final IndyInterface.CALL_TYPES GET Get property invocation type
 - 
SETpublic static final IndyInterface.CALL_TYPES SET Set property invocation type
 - 
CASTpublic static final IndyInterface.CALL_TYPES CAST Cast invocation type
 
- 
 - 
Method Detail- 
valuespublic static IndyInterface.CALL_TYPES[] 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.CALL_TYPES c : IndyInterface.CALL_TYPES.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static IndyInterface.CALL_TYPES valueOf(java.lang.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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
getCallSiteNamepublic java.lang.String getCallSiteName() Returns the name of the call site type
 
- 
 
-