| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getFullName() |
java.lang.String |
getShortName() |
ChessSide |
opposite() |
static ChessSide |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChessSide |
valueOfShortName(java.lang.String name) |
static ChessSide[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChessSide WHITE
public static final ChessSide BLACK
public static ChessSide[] values()
for (ChessSide c : ChessSide.values()) System.out.println(c);
public static ChessSide 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 java.lang.String getShortName()
public java.lang.String getFullName()
public ChessSide opposite()
public static ChessSide valueOfShortName(java.lang.String name)
Copyright © 2015. All Rights Reserved.