Uses of Class
org.bukkit.DyeColor
-
Packages that use DyeColor Package Description org.bukkit The root package of the Bukkit API, contains generalized API classes.org.bukkit.block Classes used to manipulate the voxels in aworld, including special states.org.bukkit.block.banner Classes relevant to banner blocks.org.bukkit.entity Interfaces for non-voxel objects that can exist in aworld, including all players, monsters, projectiles, etc.org.bukkit.event.entity org.bukkit.inventory.meta The interfaces used when manipulating extra data can can be stored insideitem stacks.org.bukkit.material Classes that represents various voxel types and states. -
-
Uses of DyeColor in org.bukkit
Methods in org.bukkit that return DyeColor Modifier and Type Method Description static @Nullable DyeColorDyeColor. getByColor(@NotNull Color color)Gets the DyeColor with the given color value.static @Nullable DyeColorDyeColor. getByDyeData(byte data)Deprecated.Magic valuestatic @Nullable DyeColorDyeColor. getByFireworkColor(@NotNull Color color)Gets the DyeColor with the given firework color value.static @Nullable DyeColorDyeColor. getByWoolData(byte data)Deprecated.Magic valuestatic @NotNull DyeColorDyeColor. legacyValueOf(@Nullable String name)Deprecated.legacy use onlystatic DyeColorDyeColor. valueOf(String name)Returns the enum constant of this type with the specified name.static DyeColor[]DyeColor. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.bukkit with parameters of type DyeColor Modifier and Type Method Description @NotNull ColorColor. mixDyes(@NotNull DyeColor... colors)Creates a new color with its RGB components changed as if it was dyed with the colors passed in, replicating vanilla workbench dyeing -
Uses of DyeColor in org.bukkit.block
Methods in org.bukkit.block that return DyeColor Modifier and Type Method Description @NotNull DyeColorBanner. getBaseColor()Returns the base color for this banner@NotNull DyeColorShulkerBox. getColor()Get theDyeColorcorresponding to this ShulkerBoxMethods in org.bukkit.block with parameters of type DyeColor Modifier and Type Method Description voidBanner. setBaseColor(@NotNull DyeColor color)Sets the base color for this banner. -
Uses of DyeColor in org.bukkit.block.banner
Methods in org.bukkit.block.banner that return DyeColor Modifier and Type Method Description @NotNull DyeColorPattern. getColor()Returns the color of the patternConstructors in org.bukkit.block.banner with parameters of type DyeColor Constructor Description Pattern(@NotNull DyeColor color, @NotNull PatternType pattern)Creates a new pattern from the specified color and pattern type -
Uses of DyeColor in org.bukkit.entity
Methods in org.bukkit.entity that return DyeColor Modifier and Type Method Description @NotNull DyeColorTropicalFish. getBodyColor()Gets the color of the fish's body.@NotNull DyeColorCat. getCollarColor()Get the collar color of this cat@NotNull DyeColorWolf. getCollarColor()Get the collar color of this wolf@NotNull DyeColorTropicalFish. getPatternColor()Gets the color of the fish's pattern.Methods in org.bukkit.entity with parameters of type DyeColor Modifier and Type Method Description voidPlayer. sendSignChange(@NotNull Location loc, @Nullable String[] lines, @NotNull DyeColor dyeColor)Send a sign change.voidTropicalFish. setBodyColor(@NotNull DyeColor color)Sets the color of the fish's bodyvoidCat. setCollarColor(@NotNull DyeColor color)Set the collar color of this catvoidWolf. setCollarColor(@NotNull DyeColor color)Set the collar color of this wolfvoidTropicalFish. setPatternColor(@NotNull DyeColor color)Sets the color of the fish's pattern -
Uses of DyeColor in org.bukkit.event.entity
Methods in org.bukkit.event.entity that return DyeColor Modifier and Type Method Description @NotNull DyeColorSheepDyeWoolEvent. getColor()Gets the DyeColor the sheep is being dyedMethods in org.bukkit.event.entity with parameters of type DyeColor Modifier and Type Method Description voidSheepDyeWoolEvent. setColor(@NotNull DyeColor color)Sets the DyeColor the sheep is being dyedConstructors in org.bukkit.event.entity with parameters of type DyeColor Constructor Description SheepDyeWoolEvent(@NotNull Sheep sheep, @NotNull DyeColor color) -
Uses of DyeColor in org.bukkit.inventory.meta
Methods in org.bukkit.inventory.meta that return DyeColor Modifier and Type Method Description @Nullable DyeColorBannerMeta. getBaseColor()Deprecated.banner color is now stored as the data value, not meta.@NotNull DyeColorTropicalFishBucketMeta. getBodyColor()Gets the color of the fish's body.@NotNull DyeColorTropicalFishBucketMeta. getPatternColor()Gets the color of the fish's pattern.Methods in org.bukkit.inventory.meta with parameters of type DyeColor Modifier and Type Method Description voidBannerMeta. setBaseColor(@Nullable DyeColor color)Deprecated.banner color is now stored as the data value, not meta.voidTropicalFishBucketMeta. setBodyColor(@NotNull DyeColor color)Sets the color of the fish's body.voidTropicalFishBucketMeta. setPatternColor(@NotNull DyeColor color)Sets the color of the fish's pattern. -
Uses of DyeColor in org.bukkit.material
Methods in org.bukkit.material that return DyeColor Modifier and Type Method Description @Nullable DyeColorColorable. getColor()Gets the color of this object.DyeColorDye. getColor()Deprecated.Gets the current color of this dyeDyeColorWool. getColor()Deprecated.Gets the current color of this dyeMethods in org.bukkit.material with parameters of type DyeColor Modifier and Type Method Description voidColorable. setColor(DyeColor color)Sets the color of this object to the specified DyeColor.voidDye. setColor(DyeColor color)Deprecated.Sets the color of this dyevoidWool. setColor(DyeColor color)Deprecated.Sets the color of this dyeConstructors in org.bukkit.material with parameters of type DyeColor Constructor Description Dye(DyeColor color)Deprecated.Wool(DyeColor color)Deprecated.
-