Uses of Interface
jline.console.completer.Completer
Packages that use Completer
Package
Description
Console support.
Console completer support.
-
Uses of Completer in jline.console
Methods in jline.console that return types with arguments of type CompleterModifier and TypeMethodDescriptionConsoleReader.getCompleters()
Returns an unmodifiable list of all the completers.Methods in jline.console with parameters of type CompleterModifier and TypeMethodDescriptionboolean
ConsoleReader.addCompleter
(Completer completer) Add the specifiedCompleter
to the list of handlers for tab-completion.boolean
ConsoleReader.removeCompleter
(Completer completer) Remove the specifiedCompleter
from the list of handlers for tab-completion. -
Uses of Completer in jline.console.completer
Classes in jline.console.completer that implement CompleterModifier and TypeClassDescriptionclass
Completer which contains multiple completers and aggregates them together.class
Completer for a set of strings.class
ACompleter
implementation that invokes a child completer using the appropriate separator argument.class
class
A file name completer takes the buffer and issues a list of potential completions.final class
Null completer.class
Completer for a set of strings.Methods in jline.console.completer that return types with arguments of type CompleterModifier and TypeMethodDescriptionAggregateCompleter.getCompleters()
Retrieve the collection of completers currently being aggregated.ArgumentCompleter.getCompleters()
Constructors in jline.console.completer with parameters of type CompleterModifierConstructorDescriptionAggregateCompleter
(Completer... completers) Construct an AggregateCompleter with the given completers.ArgumentCompleter
(ArgumentCompleter.ArgumentDelimiter delimiter, Completer... completers) Create a new completer with the specified argument delimiter.ArgumentCompleter
(Completer... completers) Create a new completer with the defaultArgumentCompleter.WhitespaceArgumentDelimiter
.Constructor parameters in jline.console.completer with type arguments of type CompleterModifierConstructorDescriptionAggregateCompleter
(Collection<Completer> completers) Construct an AggregateCompleter with the given collection of completers.ArgumentCompleter
(List<Completer> completers) Create a new completer with the defaultArgumentCompleter.WhitespaceArgumentDelimiter
.ArgumentCompleter
(ArgumentCompleter.ArgumentDelimiter delimiter, Collection<Completer> completers) Create a new completer with the specified argument delimiter.