Package org.bukkit.metadata
Interface Metadatable
- All Known Subinterfaces:
AbstractArrow
,AbstractHorse
,AbstractSkeleton
,AbstractVillager
,AbstractWindCharge
,AcaciaBoat
,AcaciaChestBoat
,Ageable
,Allay
,Ambient
,Animals
,AreaEffectCloud
,Armadillo
,ArmorStand
,Arrow
,Axolotl
,BambooChestRaft
,BambooRaft
,Banner
,Barrel
,Bat
,Beacon
,Bed
,Bee
,Beehive
,Bell
,BirchBoat
,BirchChestBoat
,BlastFurnace
,Blaze
,Block
,BlockDisplay
,BlockState
,Boat
,Bogged
,Boss
,Breedable
,Breeze
,BreezeWindCharge
,BrewingStand
,BrushableBlock
,Bucketable
,CalibratedSculkSensor
,Camel
,Campfire
,Cat
,CaveSpider
,CherryBoat
,CherryChestBoat
,Chest
,ChestBoat
,ChestedHorse
,Chicken
,ChiseledBookshelf
,Cod
,CollarColorable
,CommandBlock
,CommandMinecart
,Comparator
,ComplexEntityPart
,ComplexLivingEntity
,Conduit
,Container
,Cow
,Crafter
,Creaking
,CreakingHeart
,CreakingTransient
,Creature
,CreatureSpawner
,Creeper
,Damageable
,DarkOakBoat
,DarkOakChestBoat
,DaylightDetector
,DecoratedPot
,Dispenser
,Display
,Dolphin
,Donkey
,DragonFireball
,Dropper
,Drowned
,Egg
,ElderGuardian
,EnchantingTable
,EnderChest
,EnderCrystal
,EnderDragon
,EnderDragonPart
,Enderman
,Endermite
,EnderPearl
,EnderSignal
,EndGateway
,Enemy
,Entity
,EntityBlockStorage<T>
,Evoker
,EvokerFangs
,ExperienceOrb
,Explosive
,ExplosiveMinecart
,FallingBlock
,Fireball
,Firework
,Fish
,FishHook
,Flying
,Fox
,Frog
,Furnace
,Ghast
,Giant
,GlowItemFrame
,GlowSquid
,Goat
,Golem
,Guardian
,Hanging
,HangingSign
,Hoglin
,Hopper
,HopperMinecart
,Horse
,HumanEntity
,Husk
,Illager
,Illusioner
,Interaction
,IronGolem
,Item
,ItemDisplay
,ItemFrame
,Jigsaw
,Jukebox
,JungleBoat
,JungleChestBoat
,LargeFireball
,Leashable
,LeashHitch
,Lectern
,LightningStrike
,LingeringPotion
,LivingEntity
,Llama
,LlamaSpit
,LockableTileState
,MagmaCube
,MangroveBoat
,MangroveChestBoat
,Marker
,Minecart
,Mob
,Monster
,MovingPiston
,Mule
,MushroomCow
,NPC
,OakBoat
,OakChestBoat
,Ocelot
,OminousItemSpawner
,Painting
,PaleOakBoat
,PaleOakChestBoat
,Panda
,Parrot
,Phantom
,Pig
,Piglin
,PiglinAbstract
,PiglinBrute
,PigZombie
,Pillager
,Player
,PolarBear
,PoweredMinecart
,Projectile
,PufferFish
,Rabbit
,Raider
,RangedEntity
,Ravager
,RideableMinecart
,Salmon
,SchoolableFish
,SculkCatalyst
,SculkSensor
,SculkShrieker
,Shearable
,Sheep
,Shulker
,ShulkerBox
,ShulkerBullet
,Sign
,Silverfish
,SizedFireball
,Skeleton
,SkeletonHorse
,Skull
,Slime
,SmallFireball
,Smoker
,Sniffer
,Snowball
,Snowman
,SpawnerMinecart
,SpectralArrow
,Spellcaster
,Spider
,SplashPotion
,SpruceBoat
,SpruceChestBoat
,Squid
,Steerable
,StorageMinecart
,Stray
,Strider
,Structure
,SuspiciousSand
,Tadpole
,Tameable
,TextDisplay
,ThrowableProjectile
,ThrownExpBottle
,ThrownPotion
,TileState
,TileStateInventoryHolder
,TippedArrow
,TNTPrimed
,TraderLlama
,TrialSpawner
,Trident
,TropicalFish
,Turtle
,Vault
,Vehicle
,Vex
,Villager
,Vindicator
,WanderingTrader
,Warden
,WaterMob
,WindCharge
,Witch
,Wither
,WitherSkeleton
,WitherSkull
,Wolf
,World
,Zoglin
,Zombie
,ZombieHorse
,ZombieVillager
public interface Metadatable
This interface is implemented by all objects that can provide metadata
about themselves.
-
Method Summary
Modifier and TypeMethodDescriptiongetMetadata
(@NotNull String metadataKey) Returns a list of previously set metadata values from the implementing object's metadata store.boolean
hasMetadata
(@NotNull String metadataKey) Tests to see whether the implementing object contains the given metadata value in its metadata store.void
removeMetadata
(@NotNull String metadataKey, @NotNull Plugin owningPlugin) Removes the given metadata value from the implementing object's metadata store.void
setMetadata
(@NotNull String metadataKey, @NotNull MetadataValue newMetadataValue) Sets a metadata value in the implementing object's metadata store.
-
Method Details
-
setMetadata
void setMetadata(@NotNull @NotNull String metadataKey, @NotNull @NotNull MetadataValue newMetadataValue) Sets a metadata value in the implementing object's metadata store.- Parameters:
metadataKey
- A unique key to identify this metadata.newMetadataValue
- The metadata value to apply.- Throws:
IllegalArgumentException
- If value is null, or the owning plugin is null
-
getMetadata
Returns a list of previously set metadata values from the implementing object's metadata store.- Parameters:
metadataKey
- the unique metadata key being sought.- Returns:
- A list of values, one for each plugin that has set the requested value.
-
hasMetadata
Tests to see whether the implementing object contains the given metadata value in its metadata store.- Parameters:
metadataKey
- the unique metadata key being queried.- Returns:
- the existence of the metadataKey within subject.
-
removeMetadata
Removes the given metadata value from the implementing object's metadata store.- Parameters:
metadataKey
- the unique metadata key identifying the metadata to remove.owningPlugin
- This plugin's metadata value will be removed. All other values will be left untouched.- Throws:
IllegalArgumentException
- If plugin is null
-