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