A B C D E F G H I J L M N O P Q R S T U V W _

R

range(char, char) - Static method in class org.codehaus.jparsec.pattern.CharPredicates
A CharPredicate that returns true if the character is within the range of [a, b].
range(char, char) - Static method in class org.codehaus.jparsec.pattern.Patterns
Returns a Pattern object that matches if the current character in the input is between character c1 and c2, in which case 1 is returned as match length.
regex(Pattern) - Static method in class org.codehaus.jparsec.pattern.Patterns
Adapts a regular expression pattern to a Pattern.
regex(String) - Static method in class org.codehaus.jparsec.pattern.Patterns
Adapts a regular expression pattern string to a Pattern.
REGEXP_MODIFIERS - Static variable in class org.codehaus.jparsec.pattern.Patterns
A Pattern object that matches regular expression modifiers, which is a list of alpha characters.
REGEXP_PATTERN - Static variable in class org.codehaus.jparsec.pattern.Patterns
A Pattern object that matches any regular expression pattern string in the form of /some pattern here/.
repeat(int) - Method in class org.codehaus.jparsec.pattern.Pattern
Returns Pattern object that matches the input against this pattern for n times.
repeat(int, CharPredicate) - Static method in class org.codehaus.jparsec.pattern.Patterns
Returns a Pattern object that matches if the input has at least n characters and the first n characters all satisfy predicate.
RESERVED - Static variable in class org.codehaus.jparsec.Terminals
Parser that recognizes reserved word tokens.
reserved(String) - Static method in class org.codehaus.jparsec.Tokens
Returns a Tokens.Fragment tagged as Tokens.Tag.RESERVED.
retn(R) - Method in class org.codehaus.jparsec.Parser
A Parser that executes this, and returns value if succeeds.
runnable(Runnable) - Static method in class org.codehaus.jparsec.Parsers
A Parser that always succeeds and invokes Runnable.run() against runnable.

A B C D E F G H I J L M N O P Q R S T U V W _