Uses of Class
jflex.core.Action
-
Packages that use Action Package Description jflex.core jflex.dfa -
-
Uses of Action in jflex.core
Methods in jflex.core that return Action Modifier and Type Method Description Action
Action. copyChoice(int length)
copyChoice.Action
EOFActions. getAction(int state)
getAction.Action
NFA. getAction(StateSet set)
Returns the action with highest priority in the specified set of states.Action
RegExps. getAction(int num)
getAction.Action
EOFActions. getDefault()
Returns the default action.Action
Action. getHigherPriority(Action other)
Compares the priority value of this Action with the specified action.Methods in jflex.core that return types with arguments of type Action Modifier and Type Method Description Iterable<Action>
AbstractLexScan. actions()
Methods in jflex.core with parameters of type Action Modifier and Type Method Description void
EOFActions. add(Integer state, Action action)
Add.void
EOFActions. add(List<Integer> stateList, Action action)
Add.Action
Action. getHigherPriority(Action other)
Compares the priority value of this Action with the specified action.int
RegExps. insert(int line, List<Integer> stateList, RegExp regExp, Action action, Boolean isBOL, RegExp lookAhead)
insert.int
RegExps. insert(List<Integer> stateList, Action action)
insert.boolean
Action. isEquiv(Action a)
Returnstrue
iff the parameter is an Action with the same content as this one. -
Uses of Action in jflex.dfa
Methods in jflex.dfa that return Action Modifier and Type Method Description Action
DFA. action(int i)
Methods in jflex.dfa with parameters of type Action Modifier and Type Method Description void
DFA. setAction(int state, Action stateAction)
Sets the action.
-