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

L

label(String) - Method in class org.codehaus.jparsec.Parser
A Parser that reports reports an error about name expected, if this fails with no partial match.
lazy() - Method in class org.codehaus.jparsec.Parser.Reference
A Parser that delegates to the parser object referenced by this during parsing time.
length() - Method in class org.codehaus.jparsec.Token
Returns the length of the token.
lexer(Parser<?>, Parser<?>) - Method in class org.codehaus.jparsec.Indentation
A Parser that greedily runs tokenizer, and translates line feed characters ('\n') to indent and outdent tokens.
lexer(Parser<?>) - Method in class org.codehaus.jparsec.Parser
A Parser that greedily runs this repeatedly, and ignores the pattern recognized by delim before and after each occurrence.
line - Variable in class org.codehaus.jparsec.error.Location
1-based line number.
lineComment(String) - Static method in class org.codehaus.jparsec.pattern.Patterns
Returns a Pattern object that matches a line comment started by begin and ended by EOF or LF (the line feed character).
lineComment(String) - Static method in class org.codehaus.jparsec.Scanners
A scanner that succeeds and consumes all the characters until the '\n' character if the current input starts with the string literal begin.
list(Iterable<? extends Parser<? extends T>>) - Static method in class org.codehaus.jparsec.Parsers
A Parser that sequentially runs parsers one by one and collects the return values in a List.
Location - Class in org.codehaus.jparsec.error
Represents a line and column number of a character or token in the source.
Location(int, int) - Constructor for class org.codehaus.jparsec.error.Location
Creates a Location instance.
longer(Parser<? extends T>, Parser<? extends T>) - Static method in class org.codehaus.jparsec.Parsers
A Parser that runs both p1 and p2 and selects the longer match.
longer(Pattern, Pattern) - Static method in class org.codehaus.jparsec.pattern.Patterns
Returns a Pattern that tries both p1 and p2, and picks the one with the longer match length.
longest(Parser<? extends T>...) - Static method in class org.codehaus.jparsec.Parsers
A Parser that runs every element of parsers and selects the longest match.
longest(Iterable<? extends Parser<? extends T>>) - Static method in class org.codehaus.jparsec.Parsers
A Parser that runs every element of parsers and selects the longest match.
longest(Pattern...) - Static method in class org.codehaus.jparsec.pattern.Patterns
Returns a Pattern that tries all of patterns, and picks the one with the longest match length.

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