Uses of Interface
org.jline.reader.ParsedLine
-
Packages that use ParsedLine Package Description org.jline.reader JLine 3 Reader Package - Core components for building interactive command-line interfaces.org.jline.reader.impl JLine 3 Reader Implementation Package.org.jline.reader.impl.completer JLine 3 Completer Implementations. -
-
Uses of ParsedLine in org.jline.reader
Subinterfaces of ParsedLine in org.jline.reader Modifier and Type Interface Description interfaceCompletingParsedLineAn extension ofParsedLinethat, being aware of the quoting and escaping rules of theParserthat 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 ParsedLineLineReader. getParsedLine()Returns the parsed representation of the current line.default ParsedLineParser. parse(java.lang.String line, int cursor)ParsedLineParser. 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 voidCompleter. 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 classDefaultParser.ArgumentListThe result of a delimited buffer.Fields in org.jline.reader.impl declared as ParsedLine Modifier and Type Field Description protected ParsedLineLineReaderImpl. parsedLineMethods in org.jline.reader.impl that return ParsedLine Modifier and Type Method Description ParsedLineLineReaderImpl. getParsedLine()ParsedLineDefaultParser. 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 CompletingParsedLineLineReaderImpl. 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 classArgumentCompleter.ArgumentLineA simple implementation of ParsedLine for argument completion.Methods in org.jline.reader.impl.completer with parameters of type ParsedLine Modifier and Type Method Description voidAggregateCompleter. complete(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates)Perform a completion operation across all aggregated completers.voidArgumentCompleter. complete(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates)voidFileNameCompleter. complete(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates)Deprecated.voidNullCompleter. complete(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates)voidStringsCompleter. complete(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates)voidSystemCompleter. complete(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates)
-