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