Uses of Annotation Type
org.parboiled.annotations.Cached
Packages that use Cached
-
Uses of Cached in org.parboiled.parser
Methods in org.parboiled.parser with annotations of type CachedModifier and TypeMethodDescriptionBaseParser.AnyOf(Characters characters) Creates a new rule that matches any of the given characters.BaseParser.Ch(char c) Explicitly creates a rule matching the given character.BaseParser.CharRange(char cLow, char cHigh) Creates a rule matching a range of characters from cLow to cHigh (both inclusively).Creates a new rule that successively tries all of the given subrules and succeeds when the first one of its subrules matches.BaseParser.IgnoreCase(char c) Explicitly creates a rule matching the given character case-independently.BaseParser.IgnoreCase(char... characters) Explicitly creates a rule matching the given string in a case-independent fashion.Creates a new rule that repeatedly matches a given sub rule a certain fixed number of times.Creates a new rule that repeatedly matches a given sub rule a certain fixed number of times, optionally separated by a given separator rule.Creates a new rule that tries repeated matches of its subrule and succeeds if the subrule matches at least once.Creates a new rule that tries a match on its subrule and always succeeds, independently of the matching success of its sub rule.Creates a new rule that only succeeds if all of its subrule succeed, one after the other.BaseParser.String(char... characters) Explicitly creates a rule matching the given string.Creates a new rule that acts as a syntactic predicate, i.e.Creates a new rule that acts as an inverse syntactic predicate, i.e.BaseParser.ZeroOrMore(Object rule) Creates a new rule that tries repeated matches of its subrule.