java.io.Serializable
, java.lang.Comparable<BoolHeuristic>
public enum BoolHeuristic extends java.lang.Enum<BoolHeuristic>
Enum Constant | Description |
---|---|
FALSE |
Assign value
false first when labeling. |
RANDOM |
Choose the order of
true and false randomly. |
TRUE |
Assign value
true first when labeling. |
Modifier and Type | Method | Description |
---|---|---|
static BoolHeuristic |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static BoolHeuristic[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoolHeuristic FALSE
false
first when labeling.public static final BoolHeuristic TRUE
true
first when labeling.public static final BoolHeuristic RANDOM
true
and false
randomly.public static BoolHeuristic[] values()
for (BoolHeuristic c : BoolHeuristic.values()) System.out.println(c);
public static BoolHeuristic 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