java.io.Serializable
, java.lang.Comparable<SetHeuristic>
public enum SetHeuristic extends java.lang.Enum<SetHeuristic>
Enum Constant | Description |
---|---|
FIRST_IN |
The membership constraint k in X is solved first.
|
FIRST_NIN |
The non-membership constraint k not in X is solved first
|
Modifier and Type | Method | Description |
---|---|---|
static SetHeuristic |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SetHeuristic[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SetHeuristic FIRST_IN
public static final SetHeuristic FIRST_NIN
public static SetHeuristic[] values()
for (SetHeuristic c : SetHeuristic.values()) System.out.println(c);
public static SetHeuristic 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