Uses of Class
org.antlr.v4.runtime.misc.IntervalSet
- 
Packages that use IntervalSet Package Description org.antlr.v4.runtime org.antlr.v4.runtime.atn org.antlr.v4.runtime.misc 
- 
- 
Uses of IntervalSet in org.antlr.v4.runtimeFields in org.antlr.v4.runtime declared as IntervalSet Modifier and Type Field Description protected IntervalSetDefaultErrorStrategy. lastErrorStatesMethods in org.antlr.v4.runtime that return IntervalSet Modifier and Type Method Description protected IntervalSetDefaultErrorStrategy. getErrorRecoverySet(Parser recognizer)protected IntervalSetDefaultErrorStrategy. getExpectedTokens(Parser recognizer)IntervalSetParser. getExpectedTokens()Computes the set of input symbols which could follow the current parser state and context, as given byRecognizer.getState()andParser.getContext(), respectively.IntervalSetRecognitionException. getExpectedTokens()Gets the set of input symbols which could potentially follow the previously matched symbol at the time this exception was thrown.IntervalSetParser. getExpectedTokensWithinCurrentRule()Methods in org.antlr.v4.runtime with parameters of type IntervalSet Modifier and Type Method Description protected voidDefaultErrorStrategy. consumeUntil(Parser recognizer, IntervalSet set)Consume tokens until one matches the given token set.
- 
Uses of IntervalSet in org.antlr.v4.runtime.atnFields in org.antlr.v4.runtime.atn declared as IntervalSet Modifier and Type Field Description IntervalSetATNState. nextTokenWithinRuleUsed to cache lookahead during parsing, not used during constructionIntervalSetSetTransition. setMethods in org.antlr.v4.runtime.atn that return IntervalSet Modifier and Type Method Description IntervalSet[]LL1Analyzer. getDecisionLookahead(ATNState s)Calculates the SLL(1) expected lookahead set for each outgoing transition of anATNState.IntervalSetATN. getExpectedTokens(int stateNumber, RuleContext context)Computes the set of input symbols which could follow ATN state numberstateNumberin the specified fullcontext.IntervalSetAtomTransition. label()IntervalSetRangeTransition. label()IntervalSetSetTransition. label()IntervalSetTransition. label()IntervalSetLL1Analyzer. LOOK(ATNState s, ATNState stopState, RuleContext ctx)Compute set of tokens that can followsin the ATN in the specifiedctx.IntervalSetLL1Analyzer. LOOK(ATNState s, RuleContext ctx)Compute set of tokens that can followsin the ATN in the specifiedctx.IntervalSetATN. nextTokens(ATNState s)Compute the set of valid tokens that can occur starting insand staying in same rule.IntervalSetATN. nextTokens(ATNState s, RuleContext ctx)Compute the set of valid tokens that can occur starting in states.Methods in org.antlr.v4.runtime.atn with parameters of type IntervalSet Modifier and Type Method Description protected voidLL1Analyzer. _LOOK(ATNState s, ATNState stopState, PredictionContext ctx, IntervalSet look, Set<ATNConfig> lookBusy, BitSet calledRuleStack, boolean seeThruPreds, boolean addEOF)Compute set of tokens that can followsin the ATN in the specifiedctx.Method parameters in org.antlr.v4.runtime.atn with type arguments of type IntervalSet Modifier and Type Method Description protected TransitionATNDeserializer. edgeFactory(ATN atn, int type, int src, int trg, int arg1, int arg2, int arg3, List<IntervalSet> sets)Constructors in org.antlr.v4.runtime.atn with parameters of type IntervalSet Constructor Description NotSetTransition(ATNState target, IntervalSet set)SetTransition(ATNState target, IntervalSet set)
- 
Uses of IntervalSet in org.antlr.v4.runtime.miscFields in org.antlr.v4.runtime.misc declared as IntervalSet Modifier and Type Field Description static IntervalSetIntervalSet. COMPLETE_CHAR_SETstatic IntervalSetIntervalSet. EMPTY_SETMethods in org.antlr.v4.runtime.misc that return IntervalSet Modifier and Type Method Description IntervalSetIntervalSet. addAll(IntSet set)IntervalSetIntervalSet. and(IntSet other)Return a newIntSetobject containing all elements that are present in both the current set and the specified seta.IntervalSetIntervalSet. complement(int minElement, int maxElement)IntervalSetIntervalSet. complement(IntSet vocabulary)Return a newIntSetobject containing all elements that are present inelementsbut not present in the current set.static IntervalSetIntervalSet. of(int a)Create a set with a single element, el.static IntervalSetIntervalSet. of(int a, int b)Create a set with all ints within range [a..b] (inclusive)static IntervalSetIntervalSet. or(IntervalSet[] sets)combine all sets in the array returned the or'd valueIntervalSetIntervalSet. or(IntSet a)static IntervalSetIntervalSet. subtract(IntervalSet left, IntervalSet right)Compute the set difference between two interval sets.IntervalSetIntervalSet. subtract(IntSet a)static IntervalSetUtils. toSet(BitSet bits)Methods in org.antlr.v4.runtime.misc with parameters of type IntervalSet Modifier and Type Method Description static IntervalSetIntervalSet. or(IntervalSet[] sets)combine all sets in the array returned the or'd valuestatic IntervalSetIntervalSet. subtract(IntervalSet left, IntervalSet right)Compute the set difference between two interval sets.Constructors in org.antlr.v4.runtime.misc with parameters of type IntervalSet Constructor Description IntervalSet(IntervalSet set)
 
-