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