| Enum Constant and Description |
|---|
CIRCLE |
MARK |
SELECT
Selected (SGF markup type SL).
|
SQUARE |
TERRITORY_BLACK |
TERRITORY_WHITE |
TRIANGLE |
| Modifier and Type | Method and Description |
|---|---|
static MarkType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MarkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MarkType MARK
public static final MarkType CIRCLE
public static final MarkType SQUARE
public static final MarkType TRIANGLE
public static final MarkType SELECT
public static final MarkType TERRITORY_BLACK
public static final MarkType TERRITORY_WHITE
public static MarkType[] values()
for (MarkType c : MarkType.values()) System.out.println(c);
public static MarkType 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