choco.kernel.model.variables
Enum VariableType

java.lang.Object
  extended by java.lang.Enum<VariableType>
      extended by choco.kernel.model.variables.VariableType
All Implemented Interfaces:
Serializable, Comparable<VariableType>

public enum VariableType
extends Enum<VariableType>


Enum Constant Summary
CONSTANT_DOUBLE
           
CONSTANT_INTEGER
           
CONSTANT_SET
           
INTEGER
           
INTEGER_EXPRESSION
           
MULTIPLE_VARIABLES
           
NONE
           
REAL
           
REAL_EXPRESSION
           
SET
           
SET_EXPRESSION
           
TASK
           
 
Field Summary
 String name
           
 String property
           
 
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Field Detail

name

public final String name

property

public final String property
Method Detail

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.