Package org.bukkit.inventory.meta
Interface BannerMeta
- All Superinterfaces:
- Cloneable,- ConfigurationSerializable,- ItemMeta,- PersistentDataHolder
public interface BannerMeta extends ItemMeta
- 
Method SummaryModifier and Type Method Description voidaddPattern(Pattern pattern)Adds a new pattern on top of the existing patternsDyeColorgetBaseColor()Deprecated.banner color is now stored as the data value, not meta.PatterngetPattern(int i)Returns the pattern at the specified indexList<Pattern>getPatterns()Returns a list of patterns on this bannerintnumberOfPatterns()Returns the number of patterns on this bannerPatternremovePattern(int i)Removes the pattern at the specified indexvoidsetBaseColor(DyeColor color)Deprecated.banner color is now stored as the data value, not meta.voidsetPattern(int i, Pattern pattern)Sets the pattern at the specified indexvoidsetPatterns(List<Pattern> patterns)Sets the patterns used on this bannerMethods inherited from interface org.bukkit.configuration.serialization.ConfigurationSerializableserializeMethods inherited from interface org.bukkit.inventory.meta.ItemMetaaddAttributeModifier, addEnchant, addItemFlags, clone, getAttributeModifiers, getAttributeModifiers, getAttributeModifiers, getCustomModelData, getCustomTagContainer, getDisplayName, getEnchantLevel, getEnchants, getItemFlags, getLocalizedName, getLore, hasAttributeModifiers, hasConflictingEnchant, hasCustomModelData, hasDisplayName, hasEnchant, hasEnchants, hasItemFlag, hasLocalizedName, hasLore, isUnbreakable, removeAttributeModifier, removeAttributeModifier, removeAttributeModifier, removeEnchant, removeItemFlags, setAttributeModifiers, setCustomModelData, setDisplayName, setLocalizedName, setLore, setUnbreakable, setVersionMethods inherited from interface org.bukkit.persistence.PersistentDataHoldergetPersistentDataContainer
- 
Method Details- 
getBaseColorDeprecated.banner color is now stored as the data value, not meta.Returns the base color for this banner- Returns:
- the base color
 
- 
setBaseColorDeprecated.banner color is now stored as the data value, not meta.Sets the base color for this banner- Parameters:
- color- the base color
 
- 
getPatternsReturns a list of patterns on this banner- Returns:
- the patterns
 
- 
setPatternsSets the patterns used on this banner- Parameters:
- patterns- the new list of patterns
 
- 
addPatternAdds a new pattern on top of the existing patterns- Parameters:
- pattern- the new pattern to add
 
- 
getPatternReturns the pattern at the specified index- Parameters:
- i- the index
- Returns:
- the pattern
- Throws:
- IndexOutOfBoundsException- when index is not in [0, numberOfPatterns()) range
 
- 
removePatternRemoves the pattern at the specified index- Parameters:
- i- the index
- Returns:
- the removed pattern
- Throws:
- IndexOutOfBoundsException- when index is not in [0, numberOfPatterns()) range
 
- 
setPatternSets the pattern at the specified index- Parameters:
- i- the index
- pattern- the new pattern
- Throws:
- IndexOutOfBoundsException- when index is not in [0, numberOfPatterns()) range
 
- 
numberOfPatternsint numberOfPatterns()Returns the number of patterns on this banner- Returns:
- the number of patterns
 
 
-