Uses of Class
jflex.StateSet

Packages that use StateSet
Package
Description
 
  • Uses of StateSet in jflex

    Fields in jflex declared as StateSet
    Modifier and Type
    Field
    Description
    static final StateSet
    StateSet.EMPTY
    Constant EMPTY
    (package private) StateSet[]
    epsilon[current_state] is the set of states that can be reached from current_state via epsilon edges
    (package private) StateSet[][]
    NFA.table
    table[current_state][next_char] is the set of states that can be reached from current_state with an input next_char
    private static StateSet
     
    Methods in jflex that return StateSet
    Modifier and Type
    Method
    Description
    private StateSet
    NFA.closure(int startState)
    Calculates the epsilon closure for a specified set of states.
    private StateSet
    NFA.closure(StateSet startStates)
    Returns the epsilon closure of a set of states
    StateSet.complement(StateSet set)
    Returns the set of elements that contained are in the specified set but are not contained in this set.
    StateSet.copy()
    copy.
    private StateSet
    NFA.DFAEdge(StateSet start, int input)
    Calculates the set of states that can be reached from another set of states start with an specified input character input
    Methods in jflex with parameters of type StateSet
    Modifier and Type
    Method
    Description
    void
    StateSet.add(StateSet set)
    add.
    private StateSet
    NFA.closure(StateSet startStates)
    Returns the epsilon closure of a set of states
    StateSet.complement(StateSet set)
    Returns the set of elements that contained are in the specified set but are not contained in this set.
    private boolean
    Returns true, iff the specified set of states contains a final state.
    boolean
    StateSet.containsSet(StateSet set)
    containsSet.
    void
    StateSet.copy(StateSet set)
    Copy specified StateSet into this.
    private StateSet
    NFA.DFAEdge(StateSet start, int input)
    Calculates the set of states that can be reached from another set of states start with an specified input character input
    private Action
    Returns the action with highest priority in the specified set of states.
    void
    StateSetEnumerator.reset(StateSet states)
    reset.
    Constructors in jflex with parameters of type StateSet
    Modifier
    Constructor
    Description
     
    Constructor for StateSet.
     
    Constructor for StateSetEnumerator.