Uses of Class
datastructure.State

Packages that use State
datastructure   
 

Uses of State in datastructure
 

Methods in datastructure that return State
 State FiniteStateMachine.createState(java.lang.String name, StateType type)
          Creates a new State of the specified type in the fsm.
 

Methods in datastructure that return types with arguments of type State
 java.util.ArrayList<State> FiniteStateMachine.getFinalStates()
           
 java.util.ArrayList<State> FiniteStateMachine.getInitialStates()
           
 java.util.ArrayList<State> FiniteStateMachine.getStates()
           
 java.util.ArrayList<State> State.transition(java.lang.String symbol)
          Returns the successors of the state with the given symbol, null if none exist.
 

Methods in datastructure with parameters of type State
 void State.addTransition(java.lang.String symbol, State... s)
           
 boolean FiniteStateMachine.removeState(State s)
          Removes a state (also initial state and final state) from the FSM.
 boolean State.removeTransition(java.lang.String symbol, State s)