Uses of Interface
org.aesh.readline.completion.Completion
Packages that use Completion
-
Uses of Completion in org.aesh.readline
Methods in org.aesh.readline that return types with arguments of type CompletionModifier and TypeMethodDescriptionReadlineRequest.completions()Returns the list of completions for tab completion, or null if not set.Method parameters in org.aesh.readline with type arguments of type CompletionModifier and TypeMethodDescriptionReadlineRequest.Builder.completions(List<Completion> completions) Sets the list of completions for tab completion.voidReadline.readline(org.aesh.terminal.Connection conn, String prompt, Consumer<String> requestHandler, List<Completion> completions) Reads a line of input from the connection with a string prompt and completions.voidReadline.readline(org.aesh.terminal.Connection conn, Prompt prompt, Consumer<String> requestHandler, List<Completion> completions) Reads a line of input from the connection with a Prompt object and completions. -
Uses of Completion in org.aesh.readline.alias
Classes in org.aesh.readline.alias that implement CompletionModifier and TypeClassDescriptionclassCompletion provider for alias and unalias commands. -
Uses of Completion in org.aesh.readline.completion
Methods in org.aesh.readline.completion with parameters of type CompletionModifier and TypeMethodDescriptionvoidCompletionHandler.addCompletion(Completion completion) Adds a completion to the completion list.voidCompletionHandler.removeCompletion(Completion completion) Removes a completion from the completion list.Method parameters in org.aesh.readline.completion with type arguments of type CompletionModifier and TypeMethodDescriptionvoidCompletionHandler.addCompletions(List<Completion> completions) Adds a list of completions to the completion list.