abc4j API Specification

Uses of Class
scanner.State

Packages that use State
scanner This package contains classes for scanners needed for syntax analysis : a scanner is in charge of retrieving tokens from an input stream. 
 

Uses of State in scanner
 

Methods in scanner that return State
 State FinaleStateAutomata.getCurrentState()
          Returns the current state of this automata.
 State Transition.getSourceState()
          Returns the source state of this transition.
 State FinaleStateAutomata.getStartingState()
          Returns the starting state of this automata.
 State AutomataDefinition.getStartingState()
          Returns the starting state of this automata.
 State Transition.getTargetState()
          Returns the target state of this transition.
 State State.union(State state)
          Performs an union between this state and the given one.
 

Methods in scanner with parameters of type State
 void Transition.setTargetState(State state)
          Sets the target state of this transition.
 State State.union(State state)
          Performs an union between this state and the given one.
 

Constructors in scanner with parameters of type State
AutomataDefinition(State startingState)
          Creates a new definition with the given starting state.
IsAlphaTransition(State state)
          Default constructor.
IsDigitTransition(State state)
          Default constructor.
Transition(State state, char character)
           
Transition(State state, char[] characters)
          Constructs a new transition.
 


abc4j API Specification

Submit a bug or feature