Uses of Interface
org.jline.reader.ParsedLine
-
Packages that use ParsedLine Package Description org.jline.reader JLine 3.org.jline.reader.impl org.jline.reader.impl.completer JLine 3. -
-
Uses of ParsedLine in org.jline.reader
Subinterfaces of ParsedLine in org.jline.reader Modifier and Type Interface Description interface
CompletingParsedLine
An extension ofParsedLine
that, being aware of the quoting and escaping rules of theParser
that produced it, knows if and how a completion candidate should be escaped/quoted.Methods in org.jline.reader that return ParsedLine Modifier and Type Method Description ParsedLine
LineReader. getParsedLine()
default ParsedLine
Parser. parse(java.lang.String line, int cursor)
ParsedLine
Parser. parse(java.lang.String line, int cursor, Parser.ParseContext context)
Methods in org.jline.reader with parameters of type ParsedLine Modifier and Type Method Description void
Completer. complete(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates)
Populates candidates with a list of possible completions for the command line. -
Uses of ParsedLine in org.jline.reader.impl
Classes in org.jline.reader.impl that implement ParsedLine Modifier and Type Class Description class
DefaultParser.ArgumentList
The result of a delimited buffer.Fields in org.jline.reader.impl declared as ParsedLine Modifier and Type Field Description protected ParsedLine
LineReaderImpl. parsedLine
Methods in org.jline.reader.impl that return ParsedLine Modifier and Type Method Description ParsedLine
LineReaderImpl. getParsedLine()
ParsedLine
DefaultParser. parse(java.lang.String line, int cursor, Parser.ParseContext context)
Methods in org.jline.reader.impl with parameters of type ParsedLine Modifier and Type Method Description protected static CompletingParsedLine
LineReaderImpl. wrap(ParsedLine line)
-
Uses of ParsedLine in org.jline.reader.impl.completer
Classes in org.jline.reader.impl.completer that implement ParsedLine Modifier and Type Class Description static class
ArgumentCompleter.ArgumentLine
Methods in org.jline.reader.impl.completer with parameters of type ParsedLine Modifier and Type Method Description void
AggregateCompleter. complete(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates)
Perform a completion operation across all aggregated completers.void
ArgumentCompleter. complete(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates)
void
FileNameCompleter. complete(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates)
Deprecated.void
NullCompleter. complete(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates)
void
StringsCompleter. complete(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates)
void
SystemCompleter. complete(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates)
-