Class BrigadierCommand

  • All Implemented Interfaces:
    Command

    public final class BrigadierCommand
    extends Object
    implements Command
    A command that uses Brigadier for parsing the command and providing suggestions to the client.
    • Field Detail

      • FORWARD

        public static final int FORWARD
        The return code used by a Command to indicate the command execution should be forwarded to the backend server.
        See Also:
        Constant Field Values
    • Constructor Detail

      • BrigadierCommand

        public BrigadierCommand​(com.mojang.brigadier.builder.LiteralArgumentBuilder<CommandSource> builder)
        Constructs a BrigadierCommand from the node returned by the given builder.
        Parameters:
        builder - the LiteralCommandNode builder
      • BrigadierCommand

        public BrigadierCommand​(com.mojang.brigadier.tree.LiteralCommandNode<CommandSource> node)
        Constructs a BrigadierCommand from the given command node.
        Parameters:
        node - the command node
    • Method Detail

      • getNode

        public com.mojang.brigadier.tree.LiteralCommandNode<CommandSource> getNode()
        Returns the literal node for this command.
        Returns:
        the command node