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