Uses of Interface
com.github.rvesse.airline.prompts.matchers.PromptOptionMatcher
-
Packages that use PromptOptionMatcher Package Description com.github.rvesse.airline.prompts com.github.rvesse.airline.prompts.builders com.github.rvesse.airline.prompts.matchers -
-
Uses of PromptOptionMatcher in com.github.rvesse.airline.prompts
Fields in com.github.rvesse.airline.prompts declared as PromptOptionMatcher Modifier and Type Field Description private PromptOptionMatcher<TOption>
Prompt. optionMatcher
Methods in com.github.rvesse.airline.prompts that return PromptOptionMatcher Modifier and Type Method Description PromptOptionMatcher<TOption>
Prompt. getOptionMatcher()
Constructors in com.github.rvesse.airline.prompts with parameters of type PromptOptionMatcher Constructor Description Prompt(PromptProvider provider, PromptFormatter formatter, long timeout, java.util.concurrent.TimeUnit timeoutUnit, java.lang.String promptMessage, java.util.Collection<TOption> options, PromptOptionMatcher<TOption> optionMatcher, boolean allowNumericOptionSelection, TypeConverter converter)
Creates a new prompt -
Uses of PromptOptionMatcher in com.github.rvesse.airline.prompts.builders
Fields in com.github.rvesse.airline.prompts.builders declared as PromptOptionMatcher Modifier and Type Field Description private PromptOptionMatcher<TOption>
PromptBuilder. optionMatcher
Methods in com.github.rvesse.airline.prompts.builders with parameters of type PromptOptionMatcher Modifier and Type Method Description PromptBuilder<TOption>
PromptBuilder. withOptionMatcher(PromptOptionMatcher<TOption> matcher)
Specifies the option matcher to use -
Uses of PromptOptionMatcher in com.github.rvesse.airline.prompts.matchers
Classes in com.github.rvesse.airline.prompts.matchers that implement PromptOptionMatcher Modifier and Type Class Description class
DefaultMatcher<TOption>
Default prompt option matcherclass
ExactIgnoresCaseMatcher<TOption>
class
ExactMatcher<TOption>
class
IgnoresCaseMatcher<TOption>
An option matcher that ignores caseclass
IndexMatcher<TOption>
An option matcher that matches options based on the numeric index of the option using 1 based indexesclass
ValueMatcher<TOption>
An option matcher that matches based on actual value rather than strings
-