public enum IndyInterface.CallType
Enum for easy differentiation between call types.
| Enum constant | Description |
|---|---|
CAST |
Cast invocation type. |
COMPOUND_ASSIGN |
Compound-assignment invocation type (GEP-15), e.g. |
GET |
Get property invocation type. |
INIT |
Constructor invocation type. |
INTERFACE |
Interface method invocation type. |
METHOD |
Method invocation type. |
SET |
Set property invocation type. |
| Type Params | Return Type | Name and description |
|---|---|---|
|
public static IndyInterface.CallType |
fromCallSiteName(String callSiteName)Resolves a call type by its bootstrap call-site name. |
|
public String |
getCallSiteName()Returns the name of the call site type |
|
public int |
getOrderNumber()Returns the ordinal used as the call-site dispatch id. |
Cast invocation type.
Compound-assignment invocation type (GEP-15), e.g. +=. The
bootstrap name carries assignName and baseName
packed as "assignName baseName"; resolution is delegated
to IndyCompoundAssign.
Get property invocation type.
Constructor invocation type.
Interface method invocation type.
Method invocation type.
Set property invocation type.
Resolves a call type by its bootstrap call-site name.
callSiteName - the bootstrap call-site namenull if none matchesReturns the name of the call site type
Returns the ordinal used as the call-site dispatch id.
Copyright © 2003-2026 The Apache Software Foundation. All rights reserved.