Uses of Interface
org.springframework.shell.tui.component.StringInput.StringInputContext
Packages that use StringInput.StringInputContext
Package
Description
-
Uses of StringInput.StringInputContext in org.springframework.shell.tui.component
Methods in org.springframework.shell.tui.component that return StringInput.StringInputContextModifier and TypeMethodDescriptionStringInput.StringInputContext.empty()Gets an emptyStringInput.StringInputContext.StringInput.getThisContext(ComponentContext<?> context) Gets anStringInput.StringInputContext.Methods in org.springframework.shell.tui.component with parameters of type StringInput.StringInputContextModifier and TypeMethodDescriptionprotected booleanStringInput.read(org.jline.keymap.BindingReader bindingReader, org.jline.keymap.KeyMap<String> keyMap, StringInput.StringInputContext context) Constructor parameters in org.springframework.shell.tui.component with type arguments of type StringInput.StringInputContextModifierConstructorDescriptionStringInput(org.jline.terminal.Terminal terminal, String name, String defaultValue, Function<StringInput.StringInputContext, List<org.jline.utils.AttributedString>> renderer) -
Uses of StringInput.StringInputContext in org.springframework.shell.tui.component.flow
Methods in org.springframework.shell.tui.component.flow that return types with arguments of type StringInput.StringInputContextModifier and TypeMethodDescriptionBaseStringInput.getNext()BaseStringInput.getPostHandlers()BaseStringInput.getPreHandlers()Function<StringInput.StringInputContext,List<org.jline.utils.AttributedString>> BaseStringInput.getRenderer()Method parameters in org.springframework.shell.tui.component.flow with type arguments of type StringInput.StringInputContextModifier and TypeMethodDescriptionBaseStringInput.next(Function<StringInput.StringInputContext, String> next) StringInputSpec.next(Function<StringInput.StringInputContext, String> next) Define a function which may return id of a next component to go.BaseStringInput.postHandler(Consumer<StringInput.StringInputContext> handler) StringInputSpec.postHandler(Consumer<StringInput.StringInputContext> handler) Adds a post-run context handler.BaseStringInput.preHandler(Consumer<StringInput.StringInputContext> handler) StringInputSpec.preHandler(Consumer<StringInput.StringInputContext> handler) Adds a pre-run context handler.BaseStringInput.renderer(Function<StringInput.StringInputContext, List<org.jline.utils.AttributedString>> renderer) StringInputSpec.renderer(Function<StringInput.StringInputContext, List<org.jline.utils.AttributedString>> renderer) Sets a renderer function.