Uses of Class
org.aesh.readline.Prompt
Packages that use Prompt
-
Uses of Prompt in org.aesh.readline
Methods in org.aesh.readline that return PromptModifier and TypeMethodDescriptionPrompt.copy()Creates a copy of this prompt.Buffer.prompt()Returns the current prompt.Methods in org.aesh.readline with parameters of type PromptModifier and TypeMethodDescriptionvoidReadline.readline(Connection conn, Prompt prompt, Consumer<String> requestHandler) Reads a line of input from the connection with a Prompt object.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.voidvoidSpecify the promptConstructors in org.aesh.readline with parameters of type PromptModifierConstructorDescriptionAeshConsoleBuffer(Connection connection, Prompt prompt, EditMode editMode, History history, CompletionHandler completionHandler, boolean ansi, CursorListener listener) Creates a new AeshConsoleBuffer.Creates a copy of the specified prompt.