Uses of Interface
org.jline.prompt.InputBuilder
Packages that use InputBuilder
Package
Description
JLine Prompt API - Interactive Console Prompts for Java Applications.
Implementation classes for the JLine Prompt API.
-
Uses of InputBuilder in org.jline.prompt
Methods in org.jline.prompt that return InputBuilderModifier and TypeMethodDescriptionInputBuilder.completer(org.jline.reader.Completer completer) Set the completer to provide auto-completion suggestions.PromptBuilder.createInputPrompt()Create a builder for input prompts.InputBuilder.defaultValue(String defaultValue) Set the default value that will be pre-filled in the input field.InputBuilder.lineReader(org.jline.reader.LineReader lineReader) Set a custom line reader for advanced input handling.Set the character used to mask input for sensitive data.Set a validator function to validate user input before accepting it. -
Uses of InputBuilder in org.jline.prompt.impl
Classes in org.jline.prompt.impl that implement InputBuilderModifier and TypeClassDescriptionclassDefault implementation of InputBuilder.Methods in org.jline.prompt.impl that return InputBuilderModifier and TypeMethodDescriptionDefaultInputBuilder.completer(org.jline.reader.Completer completer) Set the completer to use.DefaultPromptBuilder.createInputPrompt()DefaultInputBuilder.defaultValue(String defaultValue) Set the default value.Set the filter function.DefaultInputBuilder.lineReader(org.jline.reader.LineReader lineReader) Set the line reader to use.Set the mask character for the input.Set the message to display to the user.Set the name of this prompt.DefaultInputBuilder.transformer(Function<String, String> transformer) Set the transformer function.Set the validator to use.