Package | Description |
---|---|
org.jline.builtins | |
org.jline.reader |
JLine 3.
|
org.jline.reader.impl | |
org.jline.reader.impl.completer |
JLine 3.
|
Modifier and Type | Method | Description |
---|---|---|
void |
Completers.Completer.complete(LineReader reader,
ParsedLine line,
List<Candidate> candidates) |
|
void |
Completers.FileNameCompleter.complete(LineReader reader,
ParsedLine commandLine,
List<Candidate> candidates) |
|
void |
Completers.OptionCompleter.complete(LineReader reader,
ParsedLine commandLine,
List<Candidate> candidates) |
|
void |
Completers.RegexCompleter.complete(LineReader reader,
ParsedLine line,
List<Candidate> candidates) |
|
void |
Completers.SystemCompleter.complete(LineReader reader,
ParsedLine commandLine,
List<Candidate> candidates) |
|
void |
Completers.TreeCompleter.complete(LineReader reader,
ParsedLine line,
List<Candidate> candidates) |
|
protected void |
Completers.Completer.completeCommand(List<Candidate> candidates) |
|
protected void |
Completers.Completer.completeCommandArguments(LineReader reader,
ParsedLine line,
List<Candidate> candidates,
List<Completers.CompletionData> completions) |
|
protected void |
Completers.OptDesc.completeOption(LineReader reader,
ParsedLine commandLine,
List<Candidate> candidates,
boolean longOpt) |
|
protected boolean |
Completers.OptDesc.completeValue(LineReader reader,
ParsedLine commandLine,
List<Candidate> candidates,
String curBuf,
String partialValue) |
|
protected void |
Completers.Completer.tryCompleteArguments(LineReader reader,
ParsedLine line,
List<Candidate> candidates) |
Modifier and Type | Method | Description |
---|---|---|
int |
Candidate.compareTo(Candidate o) |
Modifier and Type | Method | Description |
---|---|---|
void |
Completer.complete(LineReader reader,
ParsedLine line,
List<Candidate> candidates) |
Populates candidates with a list of possible completions for the command line.
|
Modifier and Type | Method | Description |
---|---|---|
protected Comparator<Candidate> |
LineReaderImpl.getCandidateComparator(boolean caseInsensitive,
String word) |
Modifier and Type | Method | Description |
---|---|---|
protected LineReaderImpl.PostResult |
LineReaderImpl.computePost(List<Candidate> possible,
Candidate selection,
List<Candidate> ordered,
String completed) |
|
protected LineReaderImpl.PostResult |
LineReaderImpl.computePost(List<Candidate> possible,
Candidate selection,
List<Candidate> ordered,
String completed,
Function<String,Integer> wcwidth,
int width,
boolean autoGroup,
boolean groupName,
boolean rowsFirst) |
|
protected void |
LineReaderImpl.toColumns(Object items,
int width,
int maxWidth,
AttributedStringBuilder sb,
Candidate selection,
String completed,
boolean rowsFirst,
int[] out) |
|
protected LineReaderImpl.PostResult |
LineReaderImpl.toColumns(List<Object> items,
Candidate selection,
String completed,
Function<String,Integer> wcwidth,
int width,
boolean rowsFirst) |
Modifier and Type | Method | Description |
---|---|---|
protected LineReaderImpl.PostResult |
LineReaderImpl.computePost(List<Candidate> possible,
Candidate selection,
List<Candidate> ordered,
String completed) |
|
protected LineReaderImpl.PostResult |
LineReaderImpl.computePost(List<Candidate> possible,
Candidate selection,
List<Candidate> ordered,
String completed,
Function<String,Integer> wcwidth,
int width,
boolean autoGroup,
boolean groupName,
boolean rowsFirst) |
|
protected boolean |
LineReaderImpl.doList(List<Candidate> possible,
String completed,
boolean runLoop,
BiFunction<CharSequence,Boolean,CharSequence> escaper) |
|
protected boolean |
LineReaderImpl.doList(List<Candidate> possible,
String completed,
boolean runLoop,
BiFunction<CharSequence,Boolean,CharSequence> escaper,
boolean forSuggestion) |
|
protected boolean |
LineReaderImpl.doMenu(List<Candidate> original,
String completed,
BiFunction<CharSequence,Boolean,CharSequence> escaper) |
Modifier and Type | Field | Description |
---|---|---|
protected Collection<Candidate> |
StringsCompleter.candidates |
Modifier and Type | Method | Description |
---|---|---|
void |
AggregateCompleter.complete(LineReader reader,
ParsedLine line,
List<Candidate> candidates) |
Perform a completion operation across all aggregated completers.
|
void |
ArgumentCompleter.complete(LineReader reader,
ParsedLine line,
List<Candidate> candidates) |
|
void |
FileNameCompleter.complete(LineReader reader,
ParsedLine commandLine,
List<Candidate> candidates) |
Deprecated.
|
void |
NullCompleter.complete(LineReader reader,
ParsedLine line,
List<Candidate> candidates) |
|
void |
StringsCompleter.complete(LineReader reader,
ParsedLine commandLine,
List<Candidate> candidates) |
Constructor | Description |
---|---|
StringsCompleter(Candidate... candidates) |
Constructor | Description |
---|---|
StringsCompleter(Collection<Candidate> candidates) |
Copyright © 2020. All rights reserved.