public static enum Variable.Modifier extends Enum<Variable.Modifier>
| Enum Constant and Description |
|---|
REMAINDER
Indicate that this variable can be expanded as a list of strings.
|
SUBSTRING
Indicate that this variable can be expanded as a simple string (default).
|
| Modifier and Type | Method and Description |
|---|---|
static Variable.Modifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Variable.Modifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Variable.Modifier SUBSTRING
public static final Variable.Modifier REMAINDER
public static Variable.Modifier[] values()
for (Variable.Modifier c : Variable.Modifier.values()) System.out.println(c);
public static Variable.Modifier 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 nullCopyright © 2014. All rights reserved.