Class CommandSender.Spigot

java.lang.Object
org.bukkit.command.CommandSender.Spigot
Direct Known Subclasses:
Entity.Spigot
Enclosing interface:
CommandSender

public static class CommandSender.Spigot extends Object
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    sendMessage(UUID sender, net.md_5.bungee.api.chat.BaseComponent component)
    Sends this sender a chat component.
    void
    sendMessage(UUID sender, net.md_5.bungee.api.chat.BaseComponent... components)
    Sends an array of components as a single message to the sender.
    void
    sendMessage(net.md_5.bungee.api.chat.BaseComponent component)
    Sends this sender a chat component.
    void
    sendMessage(net.md_5.bungee.api.chat.BaseComponent... components)
    Sends an array of components as a single message to the sender.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Spigot

      public Spigot()
  • Method Details

    • sendMessage

      public void sendMessage(@NotNull net.md_5.bungee.api.chat.BaseComponent component)
      Sends this sender a chat component.
      Parameters:
      component - the components to send
    • sendMessage

      public void sendMessage(@NotNull net.md_5.bungee.api.chat.BaseComponent... components)
      Sends an array of components as a single message to the sender.
      Parameters:
      components - the components to send
    • sendMessage

      public void sendMessage(@Nullable UUID sender, @NotNull net.md_5.bungee.api.chat.BaseComponent component)
      Sends this sender a chat component.
      Parameters:
      sender - the sender of the message
      component - the components to send
    • sendMessage

      public void sendMessage(@Nullable UUID sender, @NotNull net.md_5.bungee.api.chat.BaseComponent... components)
      Sends an array of components as a single message to the sender.
      Parameters:
      sender - the sender of the message
      components - the components to send