Uses of Interface
org.parboiled.matchervisitors.MatcherVisitor
-
Packages that use MatcherVisitor Package Description org.parboiled org.parboiled.matchers org.parboiled.matchervisitors -
-
Uses of MatcherVisitor in org.parboiled
Classes in org.parboiled that implement MatcherVisitor Modifier and Type Class Description class
ParserStatistics
-
Uses of MatcherVisitor in org.parboiled.matchers
Methods in org.parboiled.matchers with parameters of type MatcherVisitor Modifier and Type Method Description <R> R
ActionMatcher. accept(MatcherVisitor<R> visitor)
<R> R
AnyMatcher. accept(MatcherVisitor<R> visitor)
<R> R
AnyOfMatcher. accept(MatcherVisitor<R> visitor)
<R> R
CharIgnoreCaseMatcher. accept(MatcherVisitor<R> visitor)
<R> R
CharMatcher. accept(MatcherVisitor<R> visitor)
<R> R
CharRangeMatcher. accept(MatcherVisitor<R> visitor)
<R> R
CustomMatcher. accept(MatcherVisitor<R> visitor)
<R> R
EmptyMatcher. accept(MatcherVisitor<R> visitor)
<R> R
FirstOfMatcher. accept(MatcherVisitor<R> visitor)
<R> R
Matcher. accept(MatcherVisitor<R> visitor)
Accepts the given matcher visitor.<R> R
MemoMismatchesMatcher. accept(MatcherVisitor<R> visitor)
<R> R
NothingMatcher. accept(MatcherVisitor<R> visitor)
<R> R
OneOrMoreMatcher. accept(MatcherVisitor<R> visitor)
<R> R
OptionalMatcher. accept(MatcherVisitor<R> visitor)
<R> R
ProxyMatcher. accept(MatcherVisitor<R> visitor)
<R> R
SequenceMatcher. accept(MatcherVisitor<R> visitor)
<R> R
TestMatcher. accept(MatcherVisitor<R> visitor)
<R> R
TestNotMatcher. accept(MatcherVisitor<R> visitor)
<R> R
VarFramingMatcher. accept(MatcherVisitor<R> visitor)
<R> R
ZeroOrMoreMatcher. accept(MatcherVisitor<R> visitor)
-
Uses of MatcherVisitor in org.parboiled.matchervisitors
Classes in org.parboiled.matchervisitors that implement MatcherVisitor Modifier and Type Class Description class
CanMatchEmptyVisitor
AMatcherVisitor
determining whether a matcher can legally succeed with an empty match.class
DefaultMatcherVisitor<R>
A basicMatcherVisitor
implementation that delegates all visiting methods to one default value method.class
DoWithMatcherVisitor
A MatcherVisitor that executes a givenDoWithMatcherVisitor.Action
against a whole matcher hierarchy in a depth-first manner.class
FollowMatchersVisitor
Collects the matchers that can legally follow the given matcher according to the grammar into a given list.class
GetStarterCharVisitor
Returns the first character a given matcher can start a match with.class
IsSingleCharMatcherVisitor
AMatcherVisitor
determining whether a matcher is a basic single character matcher.class
IsStarterCharVisitor
AMatcherVisitor
determining whether a matcher can start a match with a given char.
-