Package com.kraken.api.simulation
Enum SimulationDecisionAdapter.ExecutableStepType
- java.lang.Object
-
- java.lang.Enum<SimulationDecisionAdapter.ExecutableStepType>
-
- com.kraken.api.simulation.SimulationDecisionAdapter.ExecutableStepType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SimulationDecisionAdapter.ExecutableStepType>
- Enclosing class:
- SimulationDecisionAdapter
public static enum SimulationDecisionAdapter.ExecutableStepType extends java.lang.Enum<SimulationDecisionAdapter.ExecutableStepType>
Supported executable step types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CAST_SPELLEQUIP_ITEMINVENTORY_INTERACTMOVENPC_INTERACTSWITCH_PRAYER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SimulationDecisionAdapter.ExecutableStepTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SimulationDecisionAdapter.ExecutableStepType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MOVE
public static final SimulationDecisionAdapter.ExecutableStepType MOVE
-
NPC_INTERACT
public static final SimulationDecisionAdapter.ExecutableStepType NPC_INTERACT
-
SWITCH_PRAYER
public static final SimulationDecisionAdapter.ExecutableStepType SWITCH_PRAYER
-
EQUIP_ITEM
public static final SimulationDecisionAdapter.ExecutableStepType EQUIP_ITEM
-
INVENTORY_INTERACT
public static final SimulationDecisionAdapter.ExecutableStepType INVENTORY_INTERACT
-
CAST_SPELL
public static final SimulationDecisionAdapter.ExecutableStepType CAST_SPELL
-
-
Method Detail
-
values
public static SimulationDecisionAdapter.ExecutableStepType[] 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 (SimulationDecisionAdapter.ExecutableStepType c : SimulationDecisionAdapter.ExecutableStepType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SimulationDecisionAdapter.ExecutableStepType 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
-
-