public enum GameSymbolType extends java.lang.Enum<GameSymbolType>
| Enum Constant and Description |
|---|
DoubleQuote |
EndOfSource |
GameEndBlackWin |
GameEndDraw |
GameEndNoResult |
GameEndWhiteWin |
Move |
MoveNumberIndicatorBlack |
MoveNumberIndicatorWhite |
NAG |
TagEnder |
TagStarter |
TextComment |
UnquotedComment |
VariationEnder |
VariationStarter |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
isGameTerminator(GameSymbolType t) |
static GameSymbolType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GameSymbolType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GameSymbolType TagStarter
public static final GameSymbolType TagEnder
public static final GameSymbolType DoubleQuote
public static final GameSymbolType VariationStarter
public static final GameSymbolType VariationEnder
public static final GameSymbolType GameEndNoResult
public static final GameSymbolType GameEndWhiteWin
public static final GameSymbolType GameEndBlackWin
public static final GameSymbolType GameEndDraw
public static final GameSymbolType TextComment
public static final GameSymbolType NAG
public static final GameSymbolType MoveNumberIndicatorWhite
public static final GameSymbolType MoveNumberIndicatorBlack
public static final GameSymbolType Move
public static final GameSymbolType EndOfSource
public static final GameSymbolType UnquotedComment
public static GameSymbolType[] values()
for (GameSymbolType c : GameSymbolType.values()) System.out.println(c);
public static GameSymbolType 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 static boolean isGameTerminator(GameSymbolType t)