Package org.bukkit.command
Interface CommandSender
- All Superinterfaces:
Audience
,Permissible
,Pointered
,ServerOperator
- All Known Subinterfaces:
AbstractArrow
,AbstractHorse
,AbstractSkeleton
,AbstractVillager
,Ageable
,Ambient
,Animals
,AreaEffectCloud
,ArmorStand
,Arrow
,Axolotl
,Bat
,Bee
,Blaze
,BlockCommandSender
,Boat
,Boss
,Breedable
,Bucketable
,Cat
,CaveSpider
,ChestedHorse
,Chicken
,Cod
,CollarColorable
,CommandMinecart
,ComplexEntityPart
,ComplexLivingEntity
,ConsoleCommandSender
,Cow
,Creature
,Creeper
,Damageable
,Dolphin
,Donkey
,DragonFireball
,Drowned
,Egg
,ElderGuardian
,EnderCrystal
,EnderDragon
,EnderDragonPart
,Enderman
,Endermite
,EnderPearl
,EnderSignal
,Entity
,Evoker
,EvokerFangs
,ExperienceOrb
,Explosive
,ExplosiveMinecart
,FallingBlock
,Fireball
,Firework
,Fish
,FishHook
,Flying
,Fox
,Ghast
,Giant
,GlowItemFrame
,GlowSquid
,Goat
,Golem
,Guardian
,Hanging
,Hoglin
,HopperMinecart
,Horse
,HumanEntity
,Husk
,Illager
,Illusioner
,IronGolem
,Item
,ItemFrame
,LargeFireball
,LeashHitch
,LightningStrike
,LingeringPotion
,LivingEntity
,Llama
,LlamaSpit
,MagmaCube
,Marker
,MessageCommandSender
,Minecart
,Mob
,Monster
,Mule
,MushroomCow
,NPC
,Ocelot
,Painting
,Panda
,Parrot
,Phantom
,Pig
,Piglin
,PiglinAbstract
,PiglinBrute
,PigZombie
,Pillager
,Player
,PolarBear
,PoweredMinecart
,Projectile
,ProxiedCommandSender
,PufferFish
,Rabbit
,Raider
,RangedEntity
,Ravager
,RemoteConsoleCommandSender
,RideableMinecart
,Salmon
,Sheep
,Shulker
,ShulkerBullet
,Silverfish
,SizedFireball
,Skeleton
,SkeletonHorse
,Slime
,SmallFireball
,Snowball
,Snowman
,SpawnerMinecart
,SpectralArrow
,Spellcaster
,Spider
,SplashPotion
,Squid
,Steerable
,StorageMinecart
,Stray
,Strider
,Tameable
,ThrowableProjectile
,ThrownExpBottle
,ThrownPotion
,TippedArrow
,TNTPrimed
,TraderLlama
,Trident
,TropicalFish
,Turtle
,Vehicle
,Vex
,Villager
,Vindicator
,WanderingTrader
,WaterMob
,Witch
,Wither
,WitherSkeleton
,WitherSkull
,Wolf
,Zoglin
,Zombie
,ZombieHorse
,ZombieVillager
- All Known Implementing Classes:
BufferedCommandSender
,TimingsReportListener
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetName()
Gets the name of this command senderReturns the server instance that this command is running onname()
Gets the name of this command sendervoid
sendMessage
(@NotNull String message) Sends this sender a messagevoid
sendMessage
(@NotNull String... messages) Sends this sender multiple messagesdefault void
sendMessage
(@NotNull net.md_5.bungee.api.chat.BaseComponent... components) Deprecated.void
sendMessage
(@Nullable UUID sender, @NotNull String message) Sends this sender a messagevoid
sendMessage
(@Nullable UUID sender, @NotNull String... messages) Sends this sender multiple messagesdefault void
sendMessage
(Identity identity, Component message, MessageType type) Sends a chat message.default void
sendMessage
(net.md_5.bungee.api.chat.BaseComponent component) Deprecated.usesendMessage(Identity, Component, MessageType)
insteadspigot()
Methods inherited from interface net.kyori.adventure.audience.Audience
clearTitle, filterAudience, forEachAudience, hideBossBar, openBook, openBook, playSound, playSound, playSound, resetTitle, sendActionBar, sendActionBar, sendMessage, sendMessage, sendMessage, sendMessage, sendMessage, sendMessage, sendMessage, sendMessage, sendMessage, sendMessage, sendMessage, sendPlayerListFooter, sendPlayerListFooter, sendPlayerListHeader, sendPlayerListHeader, sendPlayerListHeaderAndFooter, sendPlayerListHeaderAndFooter, sendTitlePart, showBossBar, showTitle, stopSound, stopSound
Methods inherited from interface org.bukkit.permissions.Permissible
addAttachment, addAttachment, addAttachment, addAttachment, getEffectivePermissions, hasPermission, hasPermission, isPermissionSet, isPermissionSet, permissionValue, permissionValue, recalculatePermissions, removeAttachment
Methods inherited from interface net.kyori.adventure.pointer.Pointered
get, getOrDefault, getOrDefaultFrom, pointers
Methods inherited from interface org.bukkit.permissions.ServerOperator
isOp, setOp
-
Method Details
-
sendMessage
Sends this sender a message- Parameters:
message
- Message to be displayed- See Also:
-
sendMessage
Sends this sender multiple messages- Parameters:
messages
- An array of messages to be displayed- See Also:
-
sendMessage
Sends this sender a message- Parameters:
message
- Message to be displayedsender
- The sender of this message- See Also:
-
sendMessage
Sends this sender multiple messages- Parameters:
messages
- An array of messages to be displayedsender
- The sender of this message- See Also:
-
getServer
Returns the server instance that this command is running on- Returns:
- Server instance
-
getName
Gets the name of this command sender- Returns:
- Name of the sender
-
spigot
-
name
Gets the name of this command sender- Returns:
- Name of the sender
-
sendMessage
default void sendMessage(@NotNull Identity identity, @NotNull Component message, @NotNull MessageType type) Description copied from interface:net.kyori.adventure.audience.Audience
Sends a chat message.- Specified by:
sendMessage
in interfaceAudience
- Parameters:
identity
- the identity of the source of the messagemessage
- a messagetype
- the type- See Also:
-
sendMessage
Deprecated.usesendMessage(Identity, Component, MessageType)
insteadSends the component to the senderIf this sender does not support sending full components then the component will be sent as legacy text.
- Parameters:
component
- the component to send
-
sendMessage
@Deprecated default void sendMessage(@NotNull @NotNull net.md_5.bungee.api.chat.BaseComponent... components) Deprecated.usesendMessage(Identity, Component, MessageType)
insteadSends an array of components as a single message to the senderIf this sender does not support sending full components then the components will be sent as legacy text.
- Parameters:
components
- the components to send
-
sendMessage(Identity, Component, MessageType)
instead