Package org.bukkit.inventory.meta
Interface TropicalFishBucketMeta
- All Superinterfaces:
Cloneable
,ConfigurationSerializable
,ItemMeta
,PersistentDataHolder
,PersistentDataViewHolder
Represents a bucket of tropical fish.
-
Method Summary
Modifier and TypeMethodDescriptionclone()
Gets the color of the fish's body.Gets the fish's pattern.Gets the color of the fish's pattern.boolean
Checks for existence of a variant tag indicating a specific fish will be spawned.void
setBodyColor
(@NotNull DyeColor color) Sets the color of the fish's body.void
setPattern
(TropicalFish.Pattern pattern) Sets the fish's pattern.void
setPatternColor
(@NotNull DyeColor color) Sets the color of the fish's pattern.Methods inherited from interface org.bukkit.configuration.serialization.ConfigurationSerializable
serialize
Methods inherited from interface org.bukkit.inventory.meta.ItemMeta
addAttributeModifier, addEnchant, addItemFlags, displayName, displayName, getAsComponentString, getAsString, getAttributeModifiers, getAttributeModifiers, getAttributeModifiers, getCanDestroy, getCanPlaceOn, getCustomModelData, getCustomTagContainer, getDamageResistant, getDestroyableKeys, getDisplayName, getDisplayNameComponent, getEnchantable, getEnchantLevel, getEnchantmentGlintOverride, getEnchants, getEquippable, getFood, getItemFlags, getItemModel, getItemName, getJukeboxPlayable, getLocalizedName, getLore, getLoreComponents, getMaxStackSize, getPlaceableKeys, getRarity, getTool, getTooltipStyle, getUseCooldown, getUseRemainder, hasAttributeModifiers, hasConflictingEnchant, hasCustomModelData, hasDamageResistant, hasDestroyableKeys, hasDisplayName, hasEnchant, hasEnchantable, hasEnchantmentGlintOverride, hasEnchants, hasEquippable, hasFood, hasItemFlag, hasItemModel, hasItemName, hasJukeboxPlayable, hasLocalizedName, hasLore, hasMaxStackSize, hasPlaceableKeys, hasRarity, hasTool, hasTooltipStyle, hasUseCooldown, hasUseRemainder, isFireResistant, isGlider, isHideTooltip, isUnbreakable, itemName, itemName, lore, lore, removeAttributeModifier, removeAttributeModifier, removeAttributeModifier, removeEnchant, removeEnchantments, removeItemFlags, setAttributeModifiers, setCanDestroy, setCanPlaceOn, setCustomModelData, setDamageResistant, setDestroyableKeys, setDisplayName, setDisplayNameComponent, setEnchantable, setEnchantmentGlintOverride, setEquippable, setFireResistant, setFood, setGlider, setHideTooltip, setItemModel, setItemName, setJukeboxPlayable, setLocalizedName, setLore, setLoreComponents, setMaxStackSize, setPlaceableKeys, setRarity, setTool, setTooltipStyle, setUnbreakable, setUseCooldown, setUseRemainder, setVersion
Methods inherited from interface org.bukkit.persistence.PersistentDataHolder
getPersistentDataContainer
-
Method Details
-
getPatternColor
Gets the color of the fish's pattern.Plugins should check that hasVariant() returns
true
before calling this method.- Returns:
- pattern color
-
setPatternColor
Sets the color of the fish's pattern.Setting this when hasVariant() returns
false
will initialize all other values to unspecified defaults.- Parameters:
color
- pattern color
-
getBodyColor
Gets the color of the fish's body.Plugins should check that hasVariant() returns
true
before calling this method.- Returns:
- pattern color
-
setBodyColor
Sets the color of the fish's body.Setting this when hasVariant() returns
false
will initialize all other values to unspecified defaults.- Parameters:
color
- body color
-
getPattern
Gets the fish's pattern.Plugins should check that hasVariant() returns
true
before calling this method.- Returns:
- pattern
-
setPattern
Sets the fish's pattern.Setting this when hasVariant() returns
false
will initialize all other values to unspecified defaults.- Parameters:
pattern
- new pattern
-
hasVariant
boolean hasVariant()Checks for existence of a variant tag indicating a specific fish will be spawned.- Returns:
- if there is a variant
-
clone
-