Uses of Interface
org.aesh.readline.completion.Completion
Packages that use Completion
-
Uses of Completion in org.aesh.readline
Method parameters in org.aesh.readline with type arguments of type CompletionModifier and TypeMethodDescriptionvoidReadline.readline(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(Connection conn, Prompt prompt, Consumer<String> requestHandler, List<Completion> completions) Reads a line of input from the connection with a Prompt object and completions.voidReadline.readline(Connection conn, Prompt prompt, Consumer<String> requestHandler, List<Completion> completions, List<Function<String, Optional<String>>> preProcessors) Reads a line of input from the connection with completions and pre-processors.voidReadline.readline(Connection conn, Prompt prompt, Consumer<String> requestHandler, List<Completion> completions, List<Function<String, Optional<String>>> preProcessors, History history) Reads a line of input from the connection with completions, pre-processors, and custom history.voidReadline.readline(Connection conn, Prompt prompt, Consumer<String> requestHandler, List<Completion> completions, List<Function<String, Optional<String>>> preProcessors, History history, CursorListener listener) Reads a line of input from the connection with completions, pre-processors, custom history, and cursor listener.voidReadline.readline(Connection conn, Prompt prompt, Consumer<String> requestHandler, List<Completion> completions, List<Function<String, Optional<String>>> preProcessors, History history, CursorListener listener, EnumMap<ReadlineFlag, Integer> flags) Reads a line of input from the connection with all configuration options. -
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.