public enum CallableKind extends java.lang.Enum<CallableKind>
CodePackage.getCallableKind()| Enum Constant and Description |
|---|
EXTERNAL
The 'External' literal object.
|
OPERATOR
The 'Operator' literal object.
|
REGULAR
The 'Regular' literal object.
|
STORED
The 'Stored' literal object.
|
UNKNOWN
The 'Unknown' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
EXTERNAL_VALUE
The 'External' literal value.
|
static int |
OPERATOR_VALUE
The 'Operator' literal value.
|
static int |
REGULAR_VALUE
The 'Regular' literal value.
|
static int |
STORED_VALUE
The 'Stored' literal value.
|
static int |
UNKNOWN_VALUE
The 'Unknown' literal value.
|
static java.util.List<CallableKind> |
VALUES
A public read-only list of all the 'Callable Kind' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static CallableKind |
get(int value)
Returns the 'Callable Kind' literal with the specified integer value.
|
static CallableKind |
get(java.lang.String literal)
Returns the 'Callable Kind' literal with the specified literal value.
|
static CallableKind |
getByName(java.lang.String name)
Returns the 'Callable Kind' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static CallableKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CallableKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallableKind EXTERNAL
EXTERNAL_VALUEpublic static final CallableKind REGULAR
REGULAR_VALUEpublic static final CallableKind OPERATOR
OPERATOR_VALUEpublic static final CallableKind STORED
STORED_VALUEpublic static final CallableKind UNKNOWN
UNKNOWN_VALUEpublic static final int EXTERNAL_VALUE
If the meaning of 'External' literal object isn't clear, there really should be more of a description here...
EXTERNAL,
Constant Field Valuespublic static final int REGULAR_VALUE
If the meaning of 'Regular' literal object isn't clear, there really should be more of a description here...
REGULAR,
Constant Field Valuespublic static final int OPERATOR_VALUE
If the meaning of 'Operator' literal object isn't clear, there really should be more of a description here...
OPERATOR,
Constant Field Valuespublic static final int STORED_VALUE
If the meaning of 'Stored' literal object isn't clear, there really should be more of a description here...
STORED,
Constant Field Valuespublic static final int UNKNOWN_VALUE
If the meaning of 'Unknown' literal object isn't clear, there really should be more of a description here...
UNKNOWN,
Constant Field Valuespublic static final java.util.List<CallableKind> VALUES
public static CallableKind[] values()
for (CallableKind c : CallableKind.values()) System.out.println(c);
public static CallableKind valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static CallableKind get(java.lang.String literal)
public static CallableKind getByName(java.lang.String name)
public static CallableKind get(int value)
public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString in class java.lang.Enum<CallableKind>