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