public static enum TreeMoverConfig.Heuristic extends java.lang.Enum<TreeMoverConfig.Heuristic>
| Enum Constant and Description |
|---|
BEHAVIOURAL_PROFILE |
FOOTPRINT |
RANDOM |
SIMPLE |
| Modifier and Type | Method and Description |
|---|---|
static TreeMoverConfig.Heuristic |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TreeMoverConfig.Heuristic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TreeMoverConfig.Heuristic RANDOM
public static final TreeMoverConfig.Heuristic BEHAVIOURAL_PROFILE
public static final TreeMoverConfig.Heuristic FOOTPRINT
public static final TreeMoverConfig.Heuristic SIMPLE
public static TreeMoverConfig.Heuristic[] values()
for (TreeMoverConfig.Heuristic c : TreeMoverConfig.Heuristic.values()) System.out.println(c);
public static TreeMoverConfig.Heuristic 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