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