public enum VariableSpecType extends Enum<VariableSpecType>
| Enum Constant and Description |
|---|
EXPLODED
Explode modifier (
*) |
PREFIX
Prefix modifier (
:xxx where xxx is an integer) |
SIMPLE
No modifier
|
| Modifier and Type | Method and Description |
|---|---|
static VariableSpecType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VariableSpecType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VariableSpecType SIMPLE
public static final VariableSpecType PREFIX
:xxx where xxx is an integer)
Only makes sense for string values.
public static final VariableSpecType EXPLODED
*)
Only makes sense for list and map values.
public static VariableSpecType[] values()
for (VariableSpecType c : VariableSpecType.values()) System.out.println(c);
public static VariableSpecType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null