Uses of Class
core.StateType

Packages that use StateType
core   
 

Uses of StateType in core
 

Methods in core that return StateType
 StateType FiniteStateMachine.getType(State s)
           
static StateType StateType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StateType[] StateType.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in core with parameters of type StateType
 State FiniteStateMachine.createState(java.lang.String name, StateType type)
          Creates a new state of the specified type in the fsm.
 void FiniteStateMachine.setType(State s, StateType type)
          Sets the state to the specified type.