Serializable, Comparable<RobotState>public enum RobotState extends Enum<RobotState>
| Enum Constant | Description |
|---|---|
ACTIVE |
The robot is active on the battlefield and has not hit the wall or a robot at this turn.
|
DEAD |
The robot is dead.
|
HIT_ROBOT |
The robot has hit another robot at this turn.
|
HIT_WALL |
The robot has hit a wall, i.e.
|
| Modifier and Type | Method | Description |
|---|---|---|
int |
getValue() |
Returns the state as an integer value.
|
boolean |
isAlive() |
Checks if the robot is alive.
|
boolean |
isDead() |
Checks if the robot is dead.
|
boolean |
isHitRobot() |
Checks if the robot has hit another robot.
|
boolean |
isHitWall() |
Checks if the robot has hit the wall, i.e.
|
static RobotState |
toState(int value) |
Returns a RobotState based on an integer value that represents a RobotState.
|
static RobotState |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static RobotState[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RobotState ACTIVE
public static final RobotState HIT_WALL
public static final RobotState HIT_ROBOT
public static final RobotState DEAD
public static RobotState[] values()
for (RobotState c : RobotState.values()) System.out.println(c);
public static RobotState 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 nullpublic int getValue()
toState(int)public static RobotState toState(int value)
value - the integer value that represents a specific RobotState.IllegalArgumentException - if the specified value does not correspond
to a RobotState and hence is invalid.getValue()public boolean isAlive()
true if the robot is alive; false otherwise.isDead()public boolean isDead()
true if the robot is dead; false otherwise.isAlive()public boolean isHitRobot()
true if the robot has hit a robot; false otherwise.isHitWall()public boolean isHitWall()
true if the robot has hit the wall; false otherwise.isHitRobot()Copyright © 2018. All rights reserved.