| Enum Constant and Description |
|---|
a2 |
A7 |
b2 |
B7 |
c2 |
C7 |
d2 |
D7 |
e2 |
E7 |
f2 |
F7 |
g2 |
G7 |
h2 |
H7 |
| Modifier and Type | Method and Description |
|---|---|
static StartPawn |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StartPawn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StartPawn a2
public static final StartPawn b2
public static final StartPawn c2
public static final StartPawn d2
public static final StartPawn e2
public static final StartPawn f2
public static final StartPawn g2
public static final StartPawn h2
public static final StartPawn A7
public static final StartPawn B7
public static final StartPawn C7
public static final StartPawn D7
public static final StartPawn E7
public static final StartPawn F7
public static final StartPawn G7
public static final StartPawn H7
public static StartPawn[] values()
for (StartPawn c : StartPawn.values()) System.out.println(c);
public static StartPawn 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