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