choco.kernel.model.variables
Enum VariableType
java.lang.Object
java.lang.Enum<VariableType>
choco.kernel.model.variables.VariableType
- All Implemented Interfaces:
- Serializable, Comparable<VariableType>
public enum VariableType
- extends Enum<VariableType>
Method Summary |
static VariableType |
valueOf(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. |
CONSTANT_INTEGER
public static final VariableType CONSTANT_INTEGER
CONSTANT_DOUBLE
public static final VariableType CONSTANT_DOUBLE
CONSTANT_SET
public static final VariableType CONSTANT_SET
INTEGER
public static final VariableType INTEGER
INTEGER_EXPRESSION
public static final VariableType INTEGER_EXPRESSION
MULTIPLE_VARIABLES
public static final VariableType MULTIPLE_VARIABLES
NONE
public static final VariableType NONE
REAL
public static final VariableType REAL
REAL_EXPRESSION
public static final VariableType REAL_EXPRESSION
SET
public static final VariableType SET
SET_EXPRESSION
public static final VariableType SET_EXPRESSION
TASK
public static final VariableType TASK
name
public final String name
property
public final String property
values
public static VariableType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (VariableType c : VariableType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static VariableType valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2012. All Rights Reserved.