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