Uses of Class
com.mojang.brigadier.builder.ArgumentBuilder
Packages that use ArgumentBuilder
Package
Description
-
Uses of ArgumentBuilder in com.mojang.brigadier.builder
Classes in com.mojang.brigadier.builder with type parameters of type ArgumentBuilderSubclasses of ArgumentBuilder in com.mojang.brigadier.builderModifier and TypeClassDescriptionclassclassMethods in com.mojang.brigadier.builder with parameters of type ArgumentBuilder -
Uses of ArgumentBuilder in com.mojang.brigadier.tree
Methods in com.mojang.brigadier.tree that return ArgumentBuilderModifier and TypeMethodDescriptionabstract ArgumentBuilder<S, ?> CommandNode.createBuilder()ArgumentBuilder<S, ?> RootCommandNode.createBuilder() -
Uses of ArgumentBuilder in net.minecraft.gametest.framework
Methods in net.minecraft.gametest.framework that return ArgumentBuilderModifier and TypeMethodDescriptionprivate static ArgumentBuilder<CommandSourceStack, ?> TestCommand.runWithRetryOptions(ArgumentBuilder<CommandSourceStack, ?> runArgument, InCommandFunction<CommandContext<CommandSourceStack>, TestFinder> finder) private static ArgumentBuilder<CommandSourceStack, ?> TestCommand.runWithRetryOptions(ArgumentBuilder<CommandSourceStack, ?> runArgument, InCommandFunction<CommandContext<CommandSourceStack>, TestFinder> finder, Function<ArgumentBuilder<CommandSourceStack, ?>, ArgumentBuilder<CommandSourceStack, ?>> then) private static ArgumentBuilder<CommandSourceStack, ?> TestCommand.runWithRetryOptionsAndBuildInfo(ArgumentBuilder<CommandSourceStack, ?> runArgument, InCommandFunction<CommandContext<CommandSourceStack>, TestFinder> finder) Methods in net.minecraft.gametest.framework with parameters of type ArgumentBuilderModifier and TypeMethodDescriptionprivate static ArgumentBuilder<CommandSourceStack, ?> TestCommand.runWithRetryOptions(ArgumentBuilder<CommandSourceStack, ?> runArgument, InCommandFunction<CommandContext<CommandSourceStack>, TestFinder> finder) private static ArgumentBuilder<CommandSourceStack, ?> TestCommand.runWithRetryOptions(ArgumentBuilder<CommandSourceStack, ?> runArgument, InCommandFunction<CommandContext<CommandSourceStack>, TestFinder> finder, Function<ArgumentBuilder<CommandSourceStack, ?>, ArgumentBuilder<CommandSourceStack, ?>> then) private static ArgumentBuilder<CommandSourceStack, ?> TestCommand.runWithRetryOptionsAndBuildInfo(ArgumentBuilder<CommandSourceStack, ?> runArgument, InCommandFunction<CommandContext<CommandSourceStack>, TestFinder> finder) Method parameters in net.minecraft.gametest.framework with type arguments of type ArgumentBuilderModifier and TypeMethodDescriptionprivate static ArgumentBuilder<CommandSourceStack, ?> TestCommand.runWithRetryOptions(ArgumentBuilder<CommandSourceStack, ?> runArgument, InCommandFunction<CommandContext<CommandSourceStack>, TestFinder> finder, Function<ArgumentBuilder<CommandSourceStack, ?>, ArgumentBuilder<CommandSourceStack, ?>> then) private static ArgumentBuilder<CommandSourceStack, ?> TestCommand.runWithRetryOptions(ArgumentBuilder<CommandSourceStack, ?> runArgument, InCommandFunction<CommandContext<CommandSourceStack>, TestFinder> finder, Function<ArgumentBuilder<CommandSourceStack, ?>, ArgumentBuilder<CommandSourceStack, ?>> then) -
Uses of ArgumentBuilder in net.minecraft.network.protocol.game
Methods in net.minecraft.network.protocol.game that return ArgumentBuilderModifier and TypeMethodDescription<S> ArgumentBuilder<S, ?> ClientboundCommandsPacket.ArgumentNodeStub.build(CommandBuildContext context, ClientboundCommandsPacket.NodeBuilder<S> builder) <S> ArgumentBuilder<S, ?> ClientboundCommandsPacket.LiteralNodeStub.build(CommandBuildContext context, ClientboundCommandsPacket.NodeBuilder<S> builder) <S> ArgumentBuilder<S, ?> ClientboundCommandsPacket.NodeStub.build(CommandBuildContext context, ClientboundCommandsPacket.NodeBuilder<S> builder) ArgumentBuilder<S, ?> ClientboundCommandsPacket.NodeBuilder.configure(ArgumentBuilder<S, ?> input, boolean executable, boolean restricted) ArgumentBuilder<S, ?> ClientboundCommandsPacket.NodeBuilder.createArgument(String id, ArgumentType<?> argumentType, @Nullable Identifier suggestionId) ArgumentBuilder<S, ?> ClientboundCommandsPacket.NodeBuilder.createLiteral(String id) Methods in net.minecraft.network.protocol.game with parameters of type ArgumentBuilderModifier and TypeMethodDescriptionArgumentBuilder<S, ?> ClientboundCommandsPacket.NodeBuilder.configure(ArgumentBuilder<S, ?> input, boolean executable, boolean restricted) -
Uses of ArgumentBuilder in net.minecraft.server.commands
Methods in net.minecraft.server.commands with type parameters of type ArgumentBuilderModifier and TypeMethodDescriptionprivate static <A extends ArgumentBuilder<CommandSourceStack, A>>
ATimeCommand.addClockNodes(CommandBuildContext context, A node, TimeCommand.ClockGetter clockGetter) private static <T extends ArgumentBuilder<CommandSourceStack, T>>
TLootCommand.addTargets(T root, LootCommand.TailProvider tail) Methods in net.minecraft.server.commands that return ArgumentBuilderModifier and TypeMethodDescriptionprivate static ArgumentBuilder<CommandSourceStack, ?> ExecuteCommand.addConditional(CommandNode<CommandSourceStack> root, ArgumentBuilder<CommandSourceStack, ?> argument, boolean expected, ExecuteCommand.CommandPredicate predicate) private static ArgumentBuilder<CommandSourceStack, ?> ExecuteCommand.addConditionals(CommandNode<CommandSourceStack> execute, LiteralArgumentBuilder<CommandSourceStack> parent, boolean expected, CommandBuildContext context) private static ArgumentBuilder<CommandSourceStack, ?> ExecuteCommand.addIfBlocksConditional(CommandNode<CommandSourceStack> root, ArgumentBuilder<CommandSourceStack, ?> argument, boolean expected, boolean skipAir) private static ArgumentBuilder<CommandSourceStack, ?> ScoreboardCommand.addNumberFormats(CommandBuildContext context, ArgumentBuilder<CommandSourceStack, ?> top, ScoreboardCommand.NumberFormatCommandExecutor callback) private static ArgumentBuilder<CommandSourceStack, ?> CloneCommands.beginEndDestinationAndModeSuffix(CommandBuildContext context, InCommandFunction<CommandContext<CommandSourceStack>, ServerLevel> fromDimension) LootCommand.TailProvider.construct(ArgumentBuilder<CommandSourceStack, ?> root, LootCommand.DropConsumer consumer) private static ArgumentBuilder<CommandSourceStack, ?> CloneCommands.destinationAndStrictSuffix(CommandBuildContext context, InCommandFunction<CommandContext<CommandSourceStack>, ServerLevel> fromDimension, InCommandFunction<CommandContext<CommandSourceStack>, ServerLevel> toDimension) private static ArgumentBuilder<CommandSourceStack, ?> CloneCommands.modeSuffix(CommandBuildContext context, InCommandFunction<CommandContext<CommandSourceStack>, CloneCommands.DimensionAndPosition> beginPos, InCommandFunction<CommandContext<CommandSourceStack>, CloneCommands.DimensionAndPosition> endPos, InCommandFunction<CommandContext<CommandSourceStack>, CloneCommands.DimensionAndPosition> destinationPos, boolean strict, ArgumentBuilder<CommandSourceStack, ?> builder) private static ArgumentBuilder<CommandSourceStack, ?> ExecuteCommand.wrapStores(LiteralCommandNode<CommandSourceStack> execute, LiteralArgumentBuilder<CommandSourceStack> literal, boolean storeResult) private static ArgumentBuilder<CommandSourceStack, ?> CloneCommands.wrapWithCloneMode(InCommandFunction<CommandContext<CommandSourceStack>, CloneCommands.DimensionAndPosition> beginPos, InCommandFunction<CommandContext<CommandSourceStack>, CloneCommands.DimensionAndPosition> endPos, InCommandFunction<CommandContext<CommandSourceStack>, CloneCommands.DimensionAndPosition> destinationPos, InCommandFunction<CommandContext<CommandSourceStack>, Predicate<BlockInWorld>> filter, boolean strict, ArgumentBuilder<CommandSourceStack, ?> builder) private static ArgumentBuilder<CommandSourceStack, ?> FillCommand.wrapWithMode(CommandBuildContext context, ArgumentBuilder<CommandSourceStack, ?> builder, InCommandFunction<CommandContext<CommandSourceStack>, BlockPos> from, InCommandFunction<CommandContext<CommandSourceStack>, BlockPos> to, InCommandFunction<CommandContext<CommandSourceStack>, BlockInput> block, FillCommand.NullableCommandFunction<CommandContext<CommandSourceStack>, Predicate<BlockInWorld>> filter) Methods in net.minecraft.server.commands with parameters of type ArgumentBuilderModifier and TypeMethodDescriptionprivate static ArgumentBuilder<CommandSourceStack, ?> ExecuteCommand.addConditional(CommandNode<CommandSourceStack> root, ArgumentBuilder<CommandSourceStack, ?> argument, boolean expected, ExecuteCommand.CommandPredicate predicate) private static ArgumentBuilder<CommandSourceStack, ?> ExecuteCommand.addIfBlocksConditional(CommandNode<CommandSourceStack> root, ArgumentBuilder<CommandSourceStack, ?> argument, boolean expected, boolean skipAir) private static ArgumentBuilder<CommandSourceStack, ?> ScoreboardCommand.addNumberFormats(CommandBuildContext context, ArgumentBuilder<CommandSourceStack, ?> top, ScoreboardCommand.NumberFormatCommandExecutor callback) LootCommand.TailProvider.construct(ArgumentBuilder<CommandSourceStack, ?> root, LootCommand.DropConsumer consumer) private static ArgumentBuilder<CommandSourceStack, ?> CloneCommands.modeSuffix(CommandBuildContext context, InCommandFunction<CommandContext<CommandSourceStack>, CloneCommands.DimensionAndPosition> beginPos, InCommandFunction<CommandContext<CommandSourceStack>, CloneCommands.DimensionAndPosition> endPos, InCommandFunction<CommandContext<CommandSourceStack>, CloneCommands.DimensionAndPosition> destinationPos, boolean strict, ArgumentBuilder<CommandSourceStack, ?> builder) private static ArgumentBuilder<CommandSourceStack, ?> CloneCommands.wrapWithCloneMode(InCommandFunction<CommandContext<CommandSourceStack>, CloneCommands.DimensionAndPosition> beginPos, InCommandFunction<CommandContext<CommandSourceStack>, CloneCommands.DimensionAndPosition> endPos, InCommandFunction<CommandContext<CommandSourceStack>, CloneCommands.DimensionAndPosition> destinationPos, InCommandFunction<CommandContext<CommandSourceStack>, Predicate<BlockInWorld>> filter, boolean strict, ArgumentBuilder<CommandSourceStack, ?> builder) private static ArgumentBuilder<CommandSourceStack, ?> FillCommand.wrapWithMode(CommandBuildContext context, ArgumentBuilder<CommandSourceStack, ?> builder, InCommandFunction<CommandContext<CommandSourceStack>, BlockPos> from, InCommandFunction<CommandContext<CommandSourceStack>, BlockPos> to, InCommandFunction<CommandContext<CommandSourceStack>, BlockInput> block, FillCommand.NullableCommandFunction<CommandContext<CommandSourceStack>, Predicate<BlockInWorld>> filter) -
Uses of ArgumentBuilder in net.minecraft.server.commands.data
Methods in net.minecraft.server.commands.data that return ArgumentBuilderModifier and TypeMethodDescriptionDataCommands.DataManipulatorDecorator.create(DataCommands.DataManipulator manipulator) private static ArgumentBuilder<CommandSourceStack, ?> DataCommands.decorateModification(BiConsumer<ArgumentBuilder<CommandSourceStack, ?>, DataCommands.DataManipulatorDecorator> nodeSupplier) DataCommands.DataProvider.wrap(ArgumentBuilder<CommandSourceStack, ?> parent, Function<ArgumentBuilder<CommandSourceStack, ?>, ArgumentBuilder<CommandSourceStack, ?>> function) Methods in net.minecraft.server.commands.data with parameters of type ArgumentBuilderModifier and TypeMethodDescriptionDataCommands.DataProvider.wrap(ArgumentBuilder<CommandSourceStack, ?> parent, Function<ArgumentBuilder<CommandSourceStack, ?>, ArgumentBuilder<CommandSourceStack, ?>> function) Method parameters in net.minecraft.server.commands.data with type arguments of type ArgumentBuilderModifier and TypeMethodDescriptionprivate static ArgumentBuilder<CommandSourceStack, ?> DataCommands.decorateModification(BiConsumer<ArgumentBuilder<CommandSourceStack, ?>, DataCommands.DataManipulatorDecorator> nodeSupplier) DataCommands.DataProvider.wrap(ArgumentBuilder<CommandSourceStack, ?> parent, Function<ArgumentBuilder<CommandSourceStack, ?>, ArgumentBuilder<CommandSourceStack, ?>> function) DataCommands.DataProvider.wrap(ArgumentBuilder<CommandSourceStack, ?> parent, Function<ArgumentBuilder<CommandSourceStack, ?>, ArgumentBuilder<CommandSourceStack, ?>> function) -
Uses of ArgumentBuilder in net.neoforged.neoforge.client.command
Methods in net.neoforged.neoforge.client.command that return ArgumentBuilderModifier and TypeMethodDescription(package private) static ArgumentBuilder<CommandSourceStack, ?> ClientConfigCommand.ShowFile.register() -
Uses of ArgumentBuilder in net.neoforged.neoforge.server.command
Methods in net.neoforged.neoforge.server.command that return ArgumentBuilderModifier and TypeMethodDescription(package private) static ArgumentBuilder<CommandSourceStack, ?> ConfigCommand.ShowFile.register()static ArgumentBuilder<CommandSourceStack, ?> DataComponentCommand.register()(package private) static ArgumentBuilder<CommandSourceStack, ?> DimensionsCommand.register()static ArgumentBuilder<CommandSourceStack, ?> DumpCommand.register()(package private) static ArgumentBuilder<CommandSourceStack, ?> EntityCommand.EntityListCommand.register()(package private) static ArgumentBuilder<CommandSourceStack, ?> EntityCommand.register()(package private) static ArgumentBuilder<CommandSourceStack, ?> GenerateCommand.register()(package private) static ArgumentBuilder<CommandSourceStack, ?> ModListCommand.register()static ArgumentBuilder<CommandSourceStack, ?> TagsCommand.register()(package private) static ArgumentBuilder<CommandSourceStack, ?> TimeSpeedCommand.register()(package private) static ArgumentBuilder<CommandSourceStack, ?> TPSCommand.register()(package private) static ArgumentBuilder<CommandSourceStack, ?> TrackCommand.register()(package private) static ArgumentBuilder<CommandSourceStack, ?> TrackCommand.ResetTrackingCommand.register()(package private) static ArgumentBuilder<CommandSourceStack, ?> TrackCommand.StartTrackingCommand.register()(package private) static ArgumentBuilder<CommandSourceStack, ?> TrackCommand.TrackResultsBlockEntity.register()(package private) static ArgumentBuilder<CommandSourceStack, ?> TrackCommand.TrackResultsEntity.register()