Uses of Interface
com.mojang.brigadier.Command
Packages that use Command
Package
Description
-
Uses of Command in com.mojang.brigadier.builder
Fields in com.mojang.brigadier.builder declared as CommandMethods in com.mojang.brigadier.builder that return CommandMethods in com.mojang.brigadier.builder with parameters of type Command -
Uses of Command in com.mojang.brigadier.context
Fields in com.mojang.brigadier.context declared as CommandModifier and TypeFieldDescriptionCommandContext.commandExecutable part of command.CommandContextBuilder.commandMethods in com.mojang.brigadier.context that return CommandMethods in com.mojang.brigadier.context with parameters of type CommandConstructors in com.mojang.brigadier.context with parameters of type CommandModifierConstructorDescriptionCommandContext(S source, String input, Map<String, ParsedArgument<S, ?>> arguments, Command<S> command, CommandNode<S> rootNode, List<ParsedCommandNode<S>> nodes, StringRange range, CommandContext<S> child, RedirectModifier<S> modifier, boolean forks) -
Uses of Command in com.mojang.brigadier.tree
Fields in com.mojang.brigadier.tree declared as CommandMethods in com.mojang.brigadier.tree that return CommandConstructors in com.mojang.brigadier.tree with parameters of type CommandModifierConstructorDescriptionArgumentCommandNode(String name, ArgumentType<T> type, Command<S> command, Predicate<S> requirement, CommandNode<S> redirect, RedirectModifier<S> modifier, boolean forks, SuggestionProvider<S> customSuggestions) protectedCommandNode(Command<S> command, Predicate<S> requirement, CommandNode<S> redirect, RedirectModifier<S> modifier, boolean forks) LiteralCommandNode(String literal, Command<S> command, Predicate<S> requirement, CommandNode<S> redirect, RedirectModifier<S> modifier, boolean forks) -
Uses of Command in net.minecraft.commands.execution
Subinterfaces of Command in net.minecraft.commands.execution -
Uses of Command in net.minecraft.server.commands
Classes in net.minecraft.server.commands that implement CommandModifier and TypeClassDescriptionprivate static classprivate static classprivate static classReturnCommand.ReturnFailCustomExecutor<T extends ExecutionCommandSource<T>>private static classMethods in net.minecraft.server.commands that return CommandModifier and TypeMethodDescriptionprivate static Command<CommandSourceStack> ExecuteCommand.createNumericConditionalHandler(boolean expected, ExecuteCommand.CommandNumericPredicate condition) -
Uses of Command in net.neoforged.neoforge.server.command
Methods in net.neoforged.neoforge.server.command with parameters of type CommandModifier and TypeMethodDescriptionstatic <S,T> void CommandHelper.mergeCommandNode(CommandNode<S> sourceNode, CommandNode<T> resultNode, Map<CommandNode<S>, CommandNode<T>> sourceToResult, S canUse, Command<T> execute, Function<SuggestionProvider<S>, SuggestionProvider<T>> sourceToResultSuggestion) Deep copies the children of a command node and stores a link between the source and the copyprivate static <S,T> CommandNode <T> CommandHelper.toResult(CommandNode<S> sourceNode, Map<CommandNode<S>, CommandNode<T>> sourceToResult, S canUse, Command<T> execute, Function<SuggestionProvider<S>, SuggestionProvider<T>> sourceToResultSuggestion) Creates a deep copy of a command node with a different source stack