public enum PlayerType extends Enum<PlayerType>
| Enum Constant and Description |
|---|
GOPHER |
IP_PACKET |
JAVA_GUY |
SHEBANG_NINJA |
| Modifier and Type | Method and Description |
|---|---|
static PlayerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlayerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlayerType GOPHER
public static final PlayerType IP_PACKET
public static final PlayerType SHEBANG_NINJA
public static final PlayerType JAVA_GUY
public static PlayerType[] values()
for (PlayerType c : PlayerType.values()) System.out.println(c);
public static PlayerType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015. All rights reserved.