Uses of Class
org.jline.reader.Candidate
-
Packages that use Candidate Package Description org.jline.builtins org.jline.console.impl org.jline.reader JLine 3.org.jline.reader.impl org.jline.reader.impl.completer JLine 3. -
-
Uses of Candidate in org.jline.builtins
Method parameters in org.jline.builtins with type arguments of type Candidate Modifier and Type Method Description voidCompleters.AnyCompleter. complete(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates)voidCompleters.Completer. complete(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates)voidCompleters.FileNameCompleter. complete(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates)voidCompleters.OptionCompleter. complete(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates)voidCompleters.RegexCompleter. complete(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates)voidCompleters.TreeCompleter. complete(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates)protected voidCompleters.Completer. completeCommand(java.util.List<Candidate> candidates)protected voidCompleters.Completer. completeCommandArguments(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates, java.util.List<Completers.CompletionData> completions)protected voidCompleters.OptDesc. completeOption(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates, boolean longOpt)protected booleanCompleters.OptDesc. completeValue(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates, java.lang.String curBuf, java.lang.String partialValue)protected voidCompleters.Completer. tryCompleteArguments(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates) -
Uses of Candidate in org.jline.console.impl
Method parameters in org.jline.console.impl with type arguments of type Candidate Modifier and Type Method Description voidConsoleEngineImpl.AliasValueCompleter. complete(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates)voidSystemRegistryImpl.PipelineCompleter. complete(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates)private voidSystemRegistryImpl.PipelineCompleter. doCandidates(java.util.List<Candidate> candidates, java.util.Collection<java.lang.String> fields, java.lang.String curBuf, java.lang.String postFix, java.lang.String hint) -
Uses of Candidate in org.jline.reader
Methods in org.jline.reader that return Candidate Modifier and Type Method Description CandidateCompletionMatcher. exactMatch()Methods in org.jline.reader that return types with arguments of type Candidate Modifier and Type Method Description java.util.List<Candidate>CompletionMatcher. matches(java.util.List<Candidate> candidates)Methods in org.jline.reader with parameters of type Candidate Modifier and Type Method Description intCandidate. compareTo(Candidate o)Method parameters in org.jline.reader with type arguments of type Candidate Modifier and Type Method Description voidCompleter. complete(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates)Populates candidates with a list of possible completions for the command line.java.util.List<Candidate>CompletionMatcher. matches(java.util.List<Candidate> candidates) -
Uses of Candidate in org.jline.reader.impl
Fields in org.jline.reader.impl with type parameters of type Candidate Modifier and Type Field Description protected java.util.List<java.util.function.Function<java.util.Map<java.lang.String,java.util.List<Candidate>>,java.util.Map<java.lang.String,java.util.List<Candidate>>>>CompletionMatcherImpl. matchersprotected java.util.List<java.util.function.Function<java.util.Map<java.lang.String,java.util.List<Candidate>>,java.util.Map<java.lang.String,java.util.List<Candidate>>>>CompletionMatcherImpl. matchersprivate java.util.Map<java.lang.String,java.util.List<Candidate>>CompletionMatcherImpl. matching(package private) java.util.List<Candidate>LineReaderImpl.MenuSupport. possibleMethods in org.jline.reader.impl that return Candidate Modifier and Type Method Description CandidateLineReaderImpl.MenuSupport. completion()CandidateCompletionMatcherImpl. exactMatch()Methods in org.jline.reader.impl that return types with arguments of type Candidate Modifier and Type Method Description protected java.util.Comparator<Candidate>LineReaderImpl. getCandidateComparator(boolean caseInsensitive, java.lang.String word)java.util.List<Candidate>CompletionMatcherImpl. matches(java.util.List<Candidate> candidates)protected java.util.function.Function<java.util.Map<java.lang.String,java.util.List<Candidate>>,java.util.Map<java.lang.String,java.util.List<Candidate>>>CompletionMatcherImpl. simpleMatcher(java.util.function.Predicate<java.lang.String> predicate)protected java.util.function.Function<java.util.Map<java.lang.String,java.util.List<Candidate>>,java.util.Map<java.lang.String,java.util.List<Candidate>>>CompletionMatcherImpl. simpleMatcher(java.util.function.Predicate<java.lang.String> predicate)private java.util.Map<java.lang.String,java.util.List<Candidate>>CompletionMatcherImpl. sort(java.util.List<Candidate> candidates)protected java.util.function.Function<java.util.Map<java.lang.String,java.util.List<Candidate>>,java.util.Map<java.lang.String,java.util.List<Candidate>>>CompletionMatcherImpl. typoMatcher(java.lang.String word, int errors, boolean caseInsensitive, java.lang.String originalGroupName)protected java.util.function.Function<java.util.Map<java.lang.String,java.util.List<Candidate>>,java.util.Map<java.lang.String,java.util.List<Candidate>>>CompletionMatcherImpl. typoMatcher(java.lang.String word, int errors, boolean caseInsensitive, java.lang.String originalGroupName)Methods in org.jline.reader.impl with parameters of type Candidate Modifier and Type Method Description protected LineReaderImpl.PostResultLineReaderImpl. computePost(java.util.List<Candidate> possible, Candidate selection, java.util.List<Candidate> ordered, java.lang.String completed)protected LineReaderImpl.PostResultLineReaderImpl. computePost(java.util.List<Candidate> possible, Candidate selection, java.util.List<Candidate> ordered, java.lang.String completed, java.util.function.Function<java.lang.String,java.lang.Integer> wcwidth, int width, boolean autoGroup, boolean groupName, boolean rowsFirst)protected voidLineReaderImpl. toColumns(java.lang.Object items, int width, int maxWidth, AttributedStringBuilder sb, Candidate selection, java.lang.String completed, boolean rowsFirst, boolean doMenuList, int[] out)protected LineReaderImpl.PostResultLineReaderImpl. toColumns(java.util.List<java.lang.Object> items, Candidate selection, java.lang.String completed, java.util.function.Function<java.lang.String,java.lang.Integer> wcwidth, int width, boolean rowsFirst)Method parameters in org.jline.reader.impl with type arguments of type Candidate Modifier and Type Method Description private intLineReaderImpl. candidateStartPosition(java.util.List<Candidate> cands)protected LineReaderImpl.PostResultLineReaderImpl. computePost(java.util.List<Candidate> possible, Candidate selection, java.util.List<Candidate> ordered, java.lang.String completed)protected LineReaderImpl.PostResultLineReaderImpl. computePost(java.util.List<Candidate> possible, Candidate selection, java.util.List<Candidate> ordered, java.lang.String completed, java.util.function.Function<java.lang.String,java.lang.Integer> wcwidth, int width, boolean autoGroup, boolean groupName, boolean rowsFirst)protected booleanLineReaderImpl. doList(java.util.List<Candidate> possible, java.lang.String completed, boolean runLoop, java.util.function.BiFunction<java.lang.CharSequence,java.lang.Boolean,java.lang.CharSequence> escaper)protected booleanLineReaderImpl. doList(java.util.List<Candidate> possible, java.lang.String completed, boolean runLoop, java.util.function.BiFunction<java.lang.CharSequence,java.lang.Boolean,java.lang.CharSequence> escaper, boolean forSuggestion)protected booleanLineReaderImpl. doMenu(java.util.List<Candidate> original, java.lang.String completed, java.util.function.BiFunction<java.lang.CharSequence,java.lang.Boolean,java.lang.CharSequence> escaper)java.util.List<Candidate>CompletionMatcherImpl. matches(java.util.List<Candidate> candidates)private voidLineReaderImpl. mergeCandidates(java.util.List<Candidate> possible)private java.util.Map<java.lang.String,java.util.List<Candidate>>CompletionMatcherImpl. sort(java.util.List<Candidate> candidates)Constructor parameters in org.jline.reader.impl with type arguments of type Candidate Constructor Description MenuSupport(java.util.List<Candidate> original, java.lang.String completed, java.util.function.BiFunction<java.lang.CharSequence,java.lang.Boolean,java.lang.CharSequence> escaper) -
Uses of Candidate in org.jline.reader.impl.completer
Fields in org.jline.reader.impl.completer with type parameters of type Candidate Modifier and Type Field Description protected java.util.Collection<Candidate>StringsCompleter. candidatesMethod parameters in org.jline.reader.impl.completer with type arguments of type Candidate Modifier and Type Method Description voidAggregateCompleter. complete(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates)Perform a completion operation across all aggregated completers.voidArgumentCompleter. complete(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates)voidFileNameCompleter. complete(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates)Deprecated.voidNullCompleter. complete(LineReader reader, ParsedLine line, java.util.List<Candidate> candidates)voidStringsCompleter. complete(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates)voidSystemCompleter. complete(LineReader reader, ParsedLine commandLine, java.util.List<Candidate> candidates)Constructors in org.jline.reader.impl.completer with parameters of type Candidate Constructor Description StringsCompleter(Candidate... candidates)Constructor parameters in org.jline.reader.impl.completer with type arguments of type Candidate Constructor Description StringsCompleter(java.util.Collection<Candidate> candidates)
-