Package cs.eng1.piazzapanic.stations
Enum StationAction.ActionType
- java.lang.Object
-
- java.lang.Enum<StationAction.ActionType>
-
- cs.eng1.piazzapanic.stations.StationAction.ActionType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StationAction.ActionType>
- Enclosing class:
- StationAction
public static enum StationAction.ActionType extends java.lang.Enum<StationAction.ActionType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHOP_ACTION
COOK_ACTION
FLIP_ACTION
GRAB_INGREDIENT
MAKE_BURGER
MAKE_SALAD
PLACE_INGREDIENT
SUBMIT_ORDER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StationAction.ActionType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StationAction.ActionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHOP_ACTION
public static final StationAction.ActionType CHOP_ACTION
-
COOK_ACTION
public static final StationAction.ActionType COOK_ACTION
-
FLIP_ACTION
public static final StationAction.ActionType FLIP_ACTION
-
PLACE_INGREDIENT
public static final StationAction.ActionType PLACE_INGREDIENT
-
GRAB_INGREDIENT
public static final StationAction.ActionType GRAB_INGREDIENT
-
MAKE_BURGER
public static final StationAction.ActionType MAKE_BURGER
-
MAKE_SALAD
public static final StationAction.ActionType MAKE_SALAD
-
SUBMIT_ORDER
public static final StationAction.ActionType SUBMIT_ORDER
-
-
Method Detail
-
values
public static StationAction.ActionType[] 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 (StationAction.ActionType c : StationAction.ActionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StationAction.ActionType 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
-
-