Package cl.cromer.azaraka.ai
Enum State.Type
- java.lang.Object
-
- java.lang.Enum<State.Type>
-
- cl.cromer.azaraka.ai.State.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<State.Type>
- Enclosing class:
- State
public static enum State.Type extends java.lang.Enum<State.Type>
The type of operation
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static State.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static State.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLAYER
public static final State.Type PLAYER
The player
-
ENEMY
public static final State.Type ENEMY
The enemy
-
KEY
public static final State.Type KEY
Arrive at the key
-
CHEST
public static final State.Type CHEST
Arrive at the chest
-
PORTAL
public static final State.Type PORTAL
Arrive at the portal
-
EXIT
public static final State.Type EXIT
Arrive at the exit
-
UP
public static final State.Type UP
Move up
-
DOWN
public static final State.Type DOWN
Move down
-
LEFT
public static final State.Type LEFT
Move left
-
RIGHT
public static final State.Type RIGHT
Move right
-
-
Method Detail
-
values
public static State.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (State.Type c : State.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static State.Type valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-