Uses of Class
com.evelopers.unimod.core.stateworks.StateType

Packages that use StateType
com.evelopers.unimod.core.stateworks   
 

Uses of StateType in com.evelopers.unimod.core.stateworks
 

Fields in com.evelopers.unimod.core.stateworks declared as StateType
static StateType StateType.INITIAL
          Initial state type
static StateType StateType.FINAL
          Final state type
static StateType StateType.NORMAL
          Normal state type (simple or composite)
protected  StateType State.type
           
 

Methods in com.evelopers.unimod.core.stateworks that return StateType
static StateType StateType.parseStateType(java.lang.String s)
          Parses StateType object from given string
 StateType State.getType()
          Returns state type.
 

Methods in com.evelopers.unimod.core.stateworks with parameters of type StateType
 State StateMachine.createState(java.lang.String name, StateType type)
          Creates state
 

Constructors in com.evelopers.unimod.core.stateworks with parameters of type StateType
State(java.lang.String name, StateType type)
          Creates states with given name.