Package org.ssclab.pl.milp
Enum ConsType
- java.lang.Object
-
- java.lang.Enum<ConsType>
-
- org.ssclab.pl.milp.ConsType
-
- All Implemented Interfaces:
Serializable,Comparable<ConsType>
public enum ConsType extends Enum<ConsType>
Enumeration used to define the type of relationship in a Constraint object.- Version:
- 1.0
- Author:
- Stefano Scarioli
- See Also:
- SSC Software www.sscLab.org
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BINTo define binary variablesEQTo define a constraint of the type =GETo define a constraint of the type > =INTTo define integer variablesLETo define a constraint of the type < =LOWERFor defining Lower boundsSEMICONTTo define semicontinuous variablesUPPERFor defining Upper bounds
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()Retrieves the value associated with the enumeration.StringtoString()Returns a string representation of the enumeration value.static ConsTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ConsType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQ
public static final ConsType EQ
To define a constraint of the type =
-
LE
public static final ConsType LE
To define a constraint of the type < =
-
GE
public static final ConsType GE
To define a constraint of the type > =
-
INT
public static final ConsType INT
To define integer variables
-
BIN
public static final ConsType BIN
To define binary variables
-
UPPER
public static final ConsType UPPER
For defining Upper bounds
-
LOWER
public static final ConsType LOWER
For defining Lower bounds
-
SEMICONT
public static final ConsType SEMICONT
To define semicontinuous variables
-
-
Method Detail
-
values
public static ConsType[] 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 (ConsType c : ConsType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConsType 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
-
getValue
public String getValue()
Retrieves the value associated with the enumeration.- Returns:
- The value associated with the enumeration.
-
-