public static enum Robot.BuildStatus extends java.lang.Enum<Robot.BuildStatus>
| Modifier and Type | Method and Description |
|---|---|
static Robot.BuildStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Robot.BuildStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Robot.BuildStatus WALL
public static final Robot.BuildStatus FORT
public static final Robot.BuildStatus CAPSULE
public static final Robot.BuildStatus ROBOT
public static Robot.BuildStatus[] values()
for (Robot.BuildStatus c : Robot.BuildStatus.values()) System.out.println(c);
public static Robot.BuildStatus 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