Uses of Class
org.xcsp.common.Types.TypeVar
-
Packages that use Types.TypeVar Package Description org.xcsp.common org.xcsp.common.domains org.xcsp.modeler.entities org.xcsp.parser.entries -
-
Uses of Types.TypeVar in org.xcsp.common
Methods in org.xcsp.common that return Types.TypeVar Modifier and Type Method Description static Types.TypeVar
Types.TypeVar. valueOf(String name)
Returns the enum constant of this type with the specified name.static Types.TypeVar[]
Types.TypeVar. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of Types.TypeVar in org.xcsp.common.domains
Methods in org.xcsp.common.domains with parameters of type Types.TypeVar Modifier and Type Method Description static Domains.DomBasic
Domains.DomBasic. parse(String s, Types.TypeVar type)
Returns the basic domain obtained by parsing the specified string, according to the value of the specified type.static Domains.DomGraph
Domains.DomGraph. parse(String reqV, String reqE, String posV, String posE, Types.TypeVar type)
Returns the graph domain obtained by parsing the specified strings, according to the specified type.static Domains.DomSet
Domains.DomSet. parse(String req, String pos, Types.TypeVar type)
Returns the set domain obtained by parsing the specified strings, according to the specified type.static Domains.DomStochastic
Domains.DomStochastic. parse(String s, Types.TypeVar type)
Returns the stochastic domain obtained by parsing the specified string, according to the specified type. -
Uses of Types.TypeVar in org.xcsp.modeler.entities
Methods in org.xcsp.modeler.entities that return Types.TypeVar Modifier and Type Method Description Types.TypeVar
VarEntities.VarAlone. getType()
Types.TypeVar
VarEntities.VarArray. getType()
abstract Types.TypeVar
VarEntities.VarEntity. getType()
-
Uses of Types.TypeVar in org.xcsp.parser.entries
Fields in org.xcsp.parser.entries declared as Types.TypeVar Modifier and Type Field Description Types.TypeVar
ParsingEntry.VEntry. type
The type of the entry.Methods in org.xcsp.parser.entries that return Types.TypeVar Modifier and Type Method Description Types.TypeVar
ParsingEntry.VEntry. getType()
Returns the type of the entry.Methods in org.xcsp.parser.entries with parameters of type Types.TypeVar Modifier and Type Method Description static XVariables.XVar
XVariables.XVar. build(String id, Types.TypeVar type, Domains.IDom dom)
Builds a variable with the specified id, type and domain.static XVariables.XVar
XVariables.XVar. build(String idArray, Types.TypeVar type, Domains.IDom dom, int[] indexes)
Builds a variable from an array with the specified id (combined with the specified indexes), type and domain.Constructors in org.xcsp.parser.entries with parameters of type Types.TypeVar Constructor Description VEntry(String id, Types.TypeVar type)
Builds an entry with the specified id and type.XArray(String id, Types.TypeVar type, int[] size)
Builds an array of variables with the specified id, type and size.XArray(String id, Types.TypeVar type, int[] sizes, Domains.IDom dom)
Builds an array of variables with the specified id, type and size.XVar(String id, Types.TypeVar type, Domains.IDom dom)
Builds a variable with the specified id, type and domain.XVarInteger(String id, Types.TypeVar type, Domains.IDom dom)
Builds an integer variable with the specified id, type and domain.XVarReal(String id, Types.TypeVar type, Domains.IDom dom)
Builds a real variable with the specified id, type and domain.XVarSet(String id, Types.TypeVar type, Domains.IDom dom)
Builds a set variable with the specified id, type and domain.XVarStochastic(String id, Types.TypeVar type, Domains.IDom dom)
Builds a stochastic variable with the specified id, type and domain.XVarSymbolic(String id, Types.TypeVar type, Domains.IDom dom)
Builds a symbolic variable with the specified id, type and domain.
-