Uses of Interface
jline.console.completer.Completer
Packages that use Completer
Package
Description
Console support.
Console completer support.
-
Uses of Completer in jline.console
Fields in jline.console with type parameters of type CompleterMethods 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 TypeMethodDescriptionbooleanConsoleReader.addCompleter(Completer completer) Add the specifiedCompleterto the list of handlers for tab-completion.booleanConsoleReader.removeCompleter(Completer completer) Remove the specifiedCompleterfrom the list of handlers for tab-completion. -
Uses of Completer in jline.console.completer
Classes in jline.console.completer that implement CompleterModifier and TypeClassDescriptionclassCompleter which contains multiple completers and aggregates them together.classCompleter for a set of strings.classACompleterimplementation that invokes a child completer using the appropriate separator argument.classclassA file name completer takes the buffer and issues a list of potential completions.final classNull completer.classCompleter for a set of strings.Fields in jline.console.completer with type parameters of type CompleterMethods 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()Methods in jline.console.completer with parameters of type CompleterModifier and TypeMethodDescriptionvoidConstructors 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.