Uses of Class
org.parboiled.matchers.AbstractMatcher
Packages that use AbstractMatcher
-
Uses of AbstractMatcher in org.parboiled.matchers
Subclasses of AbstractMatcher in org.parboiled.matchersModifier and TypeClassDescriptionclass
class
AMatcher
matching any single character except EOI.class
AMatcher
matching a single character out of a givenCharacters
set.class
AMatcher
matching a single character case-independently.class
AMatcher
matching a single given character.class
AMatcher
matching a single character out of a given range of characters.class
Base class of custom matcher implementations.class
AMatcher
that always successfully matches nothing.class
AMatcher
trying all of its submatchers in sequence and succeeding when the first submatcher succeeds.class
A specialized FirstOfMatcher that handles FirstOf(string, string, ...) rules much faster that the regular FirstOfMatcher.class
AMatcher
that never matches anything.class
AMatcher
that repeatedly tries its submatcher against the input.class
AMatcher
that tries its submatcher once against the input and always succeeds.class
AMatcher
that executes all of its submatchers in sequence and only succeeds if all submatchers succeed.class
ASequenceMatcher
specialization for sequences of CharMatchers.class
A specialMatcher
not actually matching any input but rather trying its submatcher against the current input position.class
A specialMatcher
not actually matching any input but rather trying its submatcher against the current input position.class
AMatcher
that repeatedly tries its submatcher against the input.Methods in org.parboiled.matchers that return AbstractMatcher -
Uses of AbstractMatcher in org.parboiled.matchervisitors
Methods in org.parboiled.matchervisitors with parameters of type AbstractMatcherModifier and TypeMethodDescriptionDefaultMatcherVisitor.defaultValue
(AbstractMatcher matcher) Returns the default value for all visiting methods that have not been overridden.DoWithMatcherVisitor.defaultValue
(AbstractMatcher matcher) FollowMatchersVisitor.defaultValue
(AbstractMatcher matcher)