Uses of Class
jflex.StateSet
-
Packages that use StateSet Package Description jflex -
-
Uses of StateSet in jflex
Fields in jflex declared as StateSet Modifier and Type Field Description static StateSetStateSet. EMPTYConstantEMPTY(package private) StateSet[]NFA. epsilonepsilon[current_state] is the set of states that can be reached from current_state via epsilon edges(package private) StateSet[][]NFA. tabletable[current_state][next_char] is the set of states that can be reached from current_state with an input next_charprivate static StateSetNFA. tempStateSetMethods in jflex that return StateSet Modifier and Type Method Description private StateSetNFA. closure(int startState)Calculates the epsilon closure for a specified set of states.private StateSetNFA. closure(StateSet startStates)Returns the epsilon closure of a set of statesStateSetStateSet. complement(StateSet set)Returns the set of elements that contained are in the specified set but are not contained in this set.StateSetStateSet. copy()copy.private StateSetNFA. DFAEdge(StateSet start, int input)Calculates the set of states that can be reached from another set of statesstartwith an specified input characterinputMethods in jflex with parameters of type StateSet Modifier and Type Method Description voidStateSet. add(StateSet set)add.private StateSetNFA. closure(StateSet startStates)Returns the epsilon closure of a set of statesStateSetStateSet. complement(StateSet set)Returns the set of elements that contained are in the specified set but are not contained in this set.private booleanNFA. containsFinal(StateSet set)Returnstrue, iff the specified set of states contains a final state.booleanStateSet. containsSet(StateSet set)containsSet.voidStateSet. copy(StateSet set)Copy specified StateSet into this.private StateSetNFA. DFAEdge(StateSet start, int input)Calculates the set of states that can be reached from another set of statesstartwith an specified input characterinputprivate ActionNFA. getAction(StateSet set)Returns the action with highest priority in the specified set of states.voidStateSetEnumerator. reset(StateSet states)reset.Constructors in jflex with parameters of type StateSet Constructor Description StateSet(StateSet set)Constructor for StateSet.StateSetEnumerator(StateSet states)Constructor for StateSetEnumerator.
-