Uses of Record Class
dev.jorel.commandapi.SuggestionInfo
Packages that use SuggestionInfo
-
Uses of SuggestionInfo in dev.jorel.commandapi.arguments
Methods in dev.jorel.commandapi.arguments with parameters of type SuggestionInfoModifier and TypeMethodDescriptionCompletableFuture<com.mojang.brigadier.suggestion.Suggestions> ArgumentSuggestions.suggest(SuggestionInfo<CommandSender> info, com.mojang.brigadier.suggestion.SuggestionsBuilder builder) Create aCompletableFutureresolving onto a brigadierSuggestionsobject.Method parameters in dev.jorel.commandapi.arguments with type arguments of type SuggestionInfoModifier and TypeMethodDescriptionstatic <CommandSender>
ArgumentSuggestions<CommandSender> ArgumentSuggestions.stringCollection(Function<SuggestionInfo<CommandSender>, Collection<String>> suggestions) Suggest a collection of strings as the result of a functionstatic <CommandSender>
ArgumentSuggestions<CommandSender> ArgumentSuggestions.stringCollectionAsync(Function<SuggestionInfo<CommandSender>, CompletableFuture<Collection<String>>> suggestions) Suggest a collection of strings asynchronouslystatic <CommandSender>
ArgumentSuggestions<CommandSender> ArgumentSuggestions.strings(Function<SuggestionInfo<CommandSender>, String[]> suggestions) Suggest an array of strings as the result of a functionstatic <CommandSender>
ArgumentSuggestions<CommandSender> ArgumentSuggestions.stringsAsync(Function<SuggestionInfo<CommandSender>, CompletableFuture<String[]>> suggestions) Suggest an array of strings asynchronouslystatic <CommandSender>
ArgumentSuggestions<CommandSender> ArgumentSuggestions.stringsWithTooltips(Function<SuggestionInfo<CommandSender>, IStringTooltip[]> suggestions) Suggest an array of strings with tooltips as the result of a functionstatic <CommandSender>
ArgumentSuggestions<CommandSender> ArgumentSuggestions.stringsWithTooltipsAsync(Function<SuggestionInfo<CommandSender>, CompletableFuture<IStringTooltip[]>> suggestions) Suggest an array of strings with tooltips asynchronouslystatic <CommandSender>
ArgumentSuggestions<CommandSender> ArgumentSuggestions.stringsWithTooltipsCollection(Function<SuggestionInfo<CommandSender>, Collection<IStringTooltip>> suggestions) Suggest a collection of strings with tooltips as the result of a functionstatic <CommandSender>
ArgumentSuggestions<CommandSender> ArgumentSuggestions.stringsWithTooltipsCollectionAsync(Function<SuggestionInfo<CommandSender>, CompletableFuture<Collection<IStringTooltip>>> suggestions) Suggest a collection of strings with tooltips asynchronouslystatic <T,CommandSender>
SafeSuggestions<T, CommandSender> SafeSuggestions.suggest(Function<SuggestionInfo<CommandSender>, T[]> suggestions) Suggest an array of values as the result of a functionstatic <T,CommandSender>
SafeSuggestions<T, CommandSender> SafeSuggestions.suggestAsync(Function<SuggestionInfo<CommandSender>, CompletableFuture<T[]>> suggestions) Suggest an array of values provided asynchronouslystatic <T,CommandSender>
SafeSuggestions<T, CommandSender> SafeSuggestions.suggestCollection(Function<SuggestionInfo<CommandSender>, Collection<T>> suggestions) Suggest a collection of values as the result of a functionstatic <T,CommandSender>
SafeSuggestions<T, CommandSender> SafeSuggestions.suggestCollectionAsync(Function<SuggestionInfo<CommandSender>, CompletableFuture<Collection<T>>> suggestions) Suggest a collection of values provided asynchronouslystatic <T,CommandSender>
SafeSuggestions<T, CommandSender> SafeSuggestions.tooltipCollection(Function<SuggestionInfo<CommandSender>, Collection<Tooltip<T>>> suggestions) Suggest a collection of values with tooltips as the result of a functionstatic <T,CommandSender>
SafeSuggestions<T, CommandSender> SafeSuggestions.tooltipCollectionAsync(Function<SuggestionInfo<CommandSender>, CompletableFuture<Collection<Tooltip<T>>>> suggestions) Suggest a collection of values with tooltips asynchronouslystatic <T,CommandSender>
SafeSuggestions<T, CommandSender> SafeSuggestions.tooltips(Function<SuggestionInfo<CommandSender>, Tooltip<T>[]> suggestions) Suggest an array of values with tooltips as the result of a functionstatic <T,CommandSender>
SafeSuggestions<T, CommandSender> SafeSuggestions.tooltipsAsync(Function<SuggestionInfo<CommandSender>, CompletableFuture<Tooltip<T>[]>> suggestions) Suggest an array of values with tooltips asynchronously