- valueOf(String) - Static method in enum javax.constraints.ConsistencyLevel
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum javax.constraints.DomainType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum javax.constraints.Objective
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum javax.constraints.Oper
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum javax.constraints.OptimizationStrategy
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum javax.constraints.Probability
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum javax.constraints.ProblemState
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum javax.constraints.SearchStrategy.SearchStrategyType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum javax.constraints.ValueSelectorType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum javax.constraints.VarSelectorType
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum javax.constraints.ConsistencyLevel
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum javax.constraints.DomainType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum javax.constraints.Objective
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum javax.constraints.Oper
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum javax.constraints.OptimizationStrategy
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum javax.constraints.Probability
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum javax.constraints.ProblemState
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum javax.constraints.SearchStrategy.SearchStrategyType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum javax.constraints.ValueSelectorType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum javax.constraints.VarSelectorType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- ValueSelector - Interface in javax.constraints
-
This is a common interface for selection of a value from the domain of a constrained variable.
- ValueSelectorType - Enum in javax.constraints
-
- Var - Interface in javax.constraints
-
This interface represents constrained integer variables, the most frequently
used type of constrained objects.
- VarBool - Interface in javax.constraints
-
This interface represents constrained boolean variables that can be seen
as integer constrained variables with the domain { 0, 1 } but with
a potentially more efficient implementation.
- variable(String, int, int) - Method in interface javax.constraints.Problem
-
Creates a Var by calling createVariable(name,min,max) and
adds this variable to the problem.
- variable(String, int, int, DomainType) - Method in interface javax.constraints.Problem
-
Similar to variable(String name, int min, int max) but also has one more parameter
that defines the default domain type.
- variable(int, int) - Method in interface javax.constraints.Problem
-
Creates a Var with domain [min;max].
- variable(String, int[]) - Method in interface javax.constraints.Problem
-
Creates a Var with the name "name" and domain containing the values in the array "domain"
of the default domain type, adds this variable to the problem, and returns the newly added Var.
- variable(int[]) - Method in interface javax.constraints.Problem
-
An equivalent of var("",domain)
- variable(String, int, int) - Method in class javax.constraints.ProblemDelegator
-
- variable(String, int, int, DomainType) - Method in class javax.constraints.ProblemDelegator
-
- variable(int, int) - Method in class javax.constraints.ProblemDelegator
-
- variable(String, int[]) - Method in class javax.constraints.ProblemDelegator
-
- variable(int[]) - Method in class javax.constraints.ProblemDelegator
-
- variableArray(String, int, int, int) - Method in interface javax.constraints.Problem
-
Creates an array of Var variables with the name "name" and domains [min;max], adds
this array of variables to the problem, and returns the newly added Var array.
- variableArray(String, int, int, int) - Method in class javax.constraints.ProblemDelegator
-
- variableBool(String) - Method in interface javax.constraints.Problem
-
Creates a boolean constrained variable with the name "name" and adds
this variable to the problem, and returns the newly added VarBool.
- variableBool() - Method in interface javax.constraints.Problem
-
Creates a boolean constrained variable without name.
- variableBool(String) - Method in class javax.constraints.ProblemDelegator
-
- variableBool() - Method in class javax.constraints.ProblemDelegator
-
- variableMatrix(String, int, int, int, int) - Method in interface javax.constraints.Problem
-
- variableMatrix(String, int, int, int, int) - Method in class javax.constraints.ProblemDelegator
-
- variableReal(String, double, double) - Method in interface javax.constraints.Problem
-
Creates a VarReal with the name "name" and domain [min;max], adds
this variable to the problem, and returns the newly added VarReal.
- variableReal(String) - Method in interface javax.constraints.Problem
-
Creates a VarReal with the name "name" and default domain [Problem.REAL_MIN;Problem.REAL_MAX], adds
this variable to the problem, and returns the newly added VarReal.
- variableReal(String, double, double) - Method in class javax.constraints.ProblemDelegator
-
- variableReal(String) - Method in class javax.constraints.ProblemDelegator
-
- variableSet(String, int, int) - Method in interface javax.constraints.Problem
-
Creates a constrained set variable VarSet with the name "name"
and domain of integer values from "min" to "max" inclusive.
- variableSet(String, int[]) - Method in interface javax.constraints.Problem
-
Creates a constrained set variable VarSet with the name "name"
and which domain consists of integer values from the array "value".
- variableSet(String, Set) - Method in interface javax.constraints.Problem
-
Creates a constrained set variable VarSet with the name "name" and which
domain consists of integer values from the Set "set".
- variableSet(String, int, int) - Method in class javax.constraints.ProblemDelegator
-
- variableSet(String, int[]) - Method in class javax.constraints.ProblemDelegator
-
- variableSet(String, Set) - Method in class javax.constraints.ProblemDelegator
-
- variableString(String, String[]) - Method in interface javax.constraints.Problem
-
- variableString(String, String[]) - Method in class javax.constraints.ProblemDelegator
-
- VarMatrix - Interface in javax.constraints
-
A VarMatrix is a two-dimensional array of Var objects
- VarReal - Interface in javax.constraints
-
This interface represents constrained real variables.
- VarRealSelector - Interface in javax.constraints
-
This is a common interface for selection of a constrained
real variable from an array of real variables.
- VarSelector - Interface in javax.constraints
-
This is a common interface for selection of a constrained
variable from an array of variables.
- VarSelectorType - Enum in javax.constraints
-
- VarSet - Interface in javax.constraints
-
This interface represents a constrained set variable
which, when bound, is equal to a set of elements.
- VarString - Interface in javax.constraints
-
VarString are a special type of constrained variables that are defined using
an array of string values.