Package org.bukkit.inventory.meta
Interface TropicalFishBucketMeta
- All Superinterfaces:
- Cloneable,- ConfigurationSerializable,- ItemMeta,- PersistentDataHolder
Represents a bucket of tropical fish.
- 
Method SummaryModifier and TypeMethodDescriptionclone()Gets the color of the fish's body.Gets the fish's pattern.Gets the color of the fish's pattern.booleanChecks for existence of a variant tag indicating a specific fish will be spawned.voidsetBodyColor(@NotNull DyeColor color) Sets the color of the fish's body.voidsetPattern(TropicalFish.Pattern pattern) Sets the fish's pattern.voidsetPatternColor(@NotNull DyeColor color) Sets the color of the fish's pattern.Methods inherited from interface org.bukkit.configuration.serialization.ConfigurationSerializableserializeMethods inherited from interface org.bukkit.inventory.meta.ItemMetaaddAttributeModifier, addEnchant, addItemFlags, displayName, displayName, getAsString, getAttributeModifiers, getAttributeModifiers, getAttributeModifiers, getCanDestroy, getCanPlaceOn, getCustomModelData, getCustomTagContainer, getDestroyableKeys, getDisplayName, getDisplayNameComponent, getEnchantLevel, getEnchants, getItemFlags, getLocalizedName, getLore, getLoreComponents, getPlaceableKeys, hasAttributeModifiers, hasConflictingEnchant, hasCustomModelData, hasDestroyableKeys, hasDisplayName, hasEnchant, hasEnchants, hasItemFlag, hasLocalizedName, hasLore, hasPlaceableKeys, isUnbreakable, lore, lore, removeAttributeModifier, removeAttributeModifier, removeAttributeModifier, removeEnchant, removeItemFlags, setAttributeModifiers, setCanDestroy, setCanPlaceOn, setCustomModelData, setDestroyableKeys, setDisplayName, setDisplayNameComponent, setLocalizedName, setLore, setLoreComponents, setPlaceableKeys, setUnbreakable, setVersionMethods inherited from interface org.bukkit.persistence.PersistentDataHoldergetPersistentDataContainer
- 
Method Details- 
getPatternColorGets the color of the fish's pattern.Plugins should check that hasVariant() returns truebefore calling this method.- Returns:
- pattern color
 
- 
setPatternColorSets the color of the fish's pattern.Setting this when hasVariant() returns falsewill initialize all other values to unspecified defaults.- Parameters:
- color- pattern color
 
- 
getBodyColorGets the color of the fish's body.Plugins should check that hasVariant() returns truebefore calling this method.- Returns:
- pattern color
 
- 
setBodyColorSets the color of the fish's body.Setting this when hasVariant() returns falsewill initialize all other values to unspecified defaults.- Parameters:
- color- body color
 
- 
getPatternGets the fish's pattern.Plugins should check that hasVariant() returns truebefore calling this method.- Returns:
- pattern
 
- 
setPatternSets the fish's pattern.Setting this when hasVariant() returns falsewill initialize all other values to unspecified defaults.- Parameters:
- pattern- new pattern
 
- 
hasVariantboolean hasVariant()Checks for existence of a variant tag indicating a specific fish will be spawned.- Returns:
- if there is a variant
 
- 
clone
 
-