public enum EmplacingStrategy extends java.lang.Enum<EmplacingStrategy>
Enum Constant and Description |
---|
FAST_AND_SIMPLE_STRATEGY |
HEURISTIC_STRATEGY |
SIMPLEX_STRATEGY |
Modifier and Type | Method and Description |
---|---|
java.lang.Class<? extends Emplacer> |
getAlgorithm() |
java.lang.String |
toString() |
static EmplacingStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EmplacingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmplacingStrategy FAST_AND_SIMPLE_STRATEGY
public static final EmplacingStrategy HEURISTIC_STRATEGY
public static final EmplacingStrategy SIMPLEX_STRATEGY
public static EmplacingStrategy[] values()
for (EmplacingStrategy c : EmplacingStrategy.values()) System.out.println(c);
public static EmplacingStrategy 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 nullpublic java.lang.Class<? extends Emplacer> getAlgorithm()
public java.lang.String toString()
toString
in class java.lang.Enum<EmplacingStrategy>