Enum Constraint.Status
- java.lang.Object
-
- java.lang.Enum<Constraint.Status>
-
- org.chocosolver.solver.constraints.Constraint.Status
-
- All Implemented Interfaces:
Serializable
,Comparable<Constraint.Status>
- Enclosing class:
- Constraint
public static enum Constraint.Status extends Enum<Constraint.Status>
Status of this constraint wrt the model
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Constraint.Status
valueOf(String name)
Returns the enum constant of this type with the specified name.static Constraint.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
POSTED
public static final Constraint.Status POSTED
Indicate that this constraint is posted in the model
-
REIFIED
public static final Constraint.Status REIFIED
Indicate that this constraint is reified in the model
-
FREE
public static final Constraint.Status FREE
Indicate that this constraint is not posted or reified yet
-
-
Method Detail
-
values
public static Constraint.Status[] 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 (Constraint.Status c : Constraint.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Constraint.Status 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 nameNullPointerException
- if the argument is null
-
-