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 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 TypeMethodDescriptionArgument.includeSuggestions(Function<SuggestionInfo, String[]> suggestions) Deprecated, for removal: This API element is subject to removal in a future version.Argument.includeSuggestionsT(Function<SuggestionInfo, IStringTooltip[]> suggestions) Deprecated, for removal: This API element is subject to removal in a future version.useArgument.includeSuggestions(ArgumentSuggestions)insteadSafeOverrideableArgument.includeWithSafeSuggestions(Function<SuggestionInfo, S[]> suggestions) Deprecated, for removal: This API element is subject to removal in a future version.SafeOverrideableArgument.includeWithSafeSuggestionsT(Function<SuggestionInfo, Tooltip<S>[]> suggestions) Deprecated, for removal: This API element is subject to removal in a future version.Argument.replaceSuggestions(Function<SuggestionInfo, String[]> suggestions) Deprecated, for removal: This API element is subject to removal in a future version.useArgument.replaceSuggestions(ArgumentSuggestions)insteadArgument.replaceSuggestionsT(Function<SuggestionInfo, IStringTooltip[]> suggestions) Deprecated, for removal: This API element is subject to removal in a future version.useArgument.replaceSuggestions(ArgumentSuggestions)insteadSafeOverrideableArgument.replaceWithSafeSuggestions(Function<SuggestionInfo, S[]> suggestions) Deprecated, for removal: This API element is subject to removal in a future version.SafeOverrideableArgument.replaceWithSafeSuggestionsT(Function<SuggestionInfo, Tooltip<S>[]> suggestions) Deprecated, for removal: This API element is subject to removal in a future version.static ArgumentSuggestionsArgumentSuggestions.strings(Function<SuggestionInfo, String[]> suggestions) Suggest strings as the result of a functionstatic ArgumentSuggestionsArgumentSuggestions.stringsAsync(Function<SuggestionInfo, CompletableFuture<String[]>> suggestions) Suggest strings asynchronouslystatic ArgumentSuggestionsArgumentSuggestions.stringsWithTooltips(Function<SuggestionInfo, IStringTooltip[]> suggestions) Suggest strings with tooltips as the result of a functionstatic ArgumentSuggestionsArgumentSuggestions.stringsWithTooltipsAsync(Function<SuggestionInfo, CompletableFuture<IStringTooltip[]>> suggestions) Suggest strings with tooltips asynchronouslystatic <T> SafeSuggestions<T>SafeSuggestions.suggest(Function<SuggestionInfo, T[]> suggestions) Suggest values as the result of a functionstatic <T> SafeSuggestions<T>SafeSuggestions.suggestAsync(Function<SuggestionInfo, CompletableFuture<T[]>> suggestions) Suggest values provided asynchronouslystatic <T> SafeSuggestions<T>SafeSuggestions.tooltips(Function<SuggestionInfo, Tooltip<T>[]> suggestions) Suggest values with tooltips as the result of a functionstatic <T> SafeSuggestions<T>SafeSuggestions.tooltipsAsync(Function<SuggestionInfo, CompletableFuture<Tooltip<T>[]>> suggestions) Suggest values with tooltips asynchronously
Argument.includeSuggestions(ArgumentSuggestions)instead