public enum ContextOperationType extends java.lang.Enum<ContextOperationType>
| Enum Constant and Description |
|---|
CALL_FUNCTION |
FIRE_EVENT |
GET_VARIABLE |
SET_VARIABLE |
| Modifier and Type | Method and Description |
|---|---|
static ContextOperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContextOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContextOperationType CALL_FUNCTION
public static final ContextOperationType GET_VARIABLE
public static final ContextOperationType SET_VARIABLE
public static final ContextOperationType FIRE_EVENT
public static ContextOperationType[] values()
for (ContextOperationType c : ContextOperationType.values()) System.out.println(c);
public static ContextOperationType 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 null