Uses of Interface
org.parboiled.Context
-
Packages that use Context Package Description org.parboiled org.parboiled.parserunners org.parboiled.support -
-
Uses of Context in org.parboiled
Classes in org.parboiled that implement Context Modifier and Type Class Description classMatcherContext<V>The Context implementation orchestrating most of the matching process.Methods in org.parboiled that return Context Modifier and Type Method Description Context<V>Context. getParent()Returns the parent context, i.e.Methods in org.parboiled with parameters of type Context Modifier and Type Method Description booleanAction. run(Context<V> context)Runs the parser action.voidContextAware. setContext(Context<V> context)Called immediately before any parser action method invocation. -
Uses of Context in org.parboiled.parserunners
Methods in org.parboiled.parserunners that return types with arguments of type Context Modifier and Type Method Description Predicate<Tuple2<Context<?>,java.lang.Boolean>>TracingParseRunner. getFilter() -
Uses of Context in org.parboiled.support
Methods in org.parboiled.support that return types with arguments of type Context Modifier and Type Method Description static Predicate<Tuple2<Context<?>,java.lang.Boolean>>Filters. fromLine(int firstLine)A predicate usable as a filter (element) of aTracingParseRunner.static Predicate<Tuple2<Context<?>,java.lang.Boolean>>Filters. lines(int firstLine, int lastLine)A predicate usable as a filter (element) of aTracingParseRunner.static Predicate<Tuple2<Context<?>,java.lang.Boolean>>Filters. onlyMatches()A predicate usable as a filter (element) of aTracingParseRunner.static Predicate<Tuple2<Context<?>,java.lang.Boolean>>Filters. onlyMismatches()A predicate usable as a filter (element) of aTracingParseRunner.static Predicate<Tuple2<Context<?>,java.lang.Boolean>>Filters. onlyRules(Rule... rules)A predicate usable as a filter (element) of aTracingParseRunner.static Predicate<Tuple2<Context<?>,java.lang.Boolean>>Filters. rules(Rule... rules)A predicate usable as a filter (element) of aTracingParseRunner.static Predicate<Tuple2<Context<?>,java.lang.Boolean>>Filters. rulesBelow(Rule... rules)A predicate usable as a filter (element) of aTracingParseRunner.static Predicate<Tuple2<Context<?>,java.lang.Boolean>>Filters. untilLine(int lastLine)A predicate usable as a filter (element) of aTracingParseRunner.
-