public enum ConsType extends java.lang.Enum<ConsType>
Enum Constant and Description |
---|
BIN
Per definire variabili binarie
|
EQ
Per definire un vincolo del tipo =
|
GE
Per definire un vincolo del tipo > =
|
INT
Per definire variabili intere
|
LE
Per definire un vincolo del tipo < =
|
LOWER
Per la definizione dei Lower bound
|
SEMICONT
Per definire variabili semicontinue
|
UPPER
Per la definizione degli Upper bound
|
Modifier and Type | Method and Description |
---|---|
static ConsType |
valueOf(java.lang.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.
|
public static final ConsType EQ
public static final ConsType LE
public static final ConsType GE
public static final ConsType INT
public static final ConsType BIN
public static final ConsType UPPER
public static final ConsType LOWER
public static final ConsType SEMICONT
public static ConsType[] values()
for (ConsType c : ConsType.values()) System.out.println(c);
public static ConsType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null