Enum Class BlockColor

java.lang.Object
java.lang.Enum<BlockColor>
org.cloudburstmc.api.util.data.BlockColor
All Implemented Interfaces:
Serializable, Comparable<BlockColor>, Constable

public enum BlockColor extends Enum<BlockColor>
  • Enum Constant Details

    • TRANSPARENT_BLOCK_COLOR

      public static final BlockColor TRANSPARENT_BLOCK_COLOR
    • VOID_BLOCK_COLOR

      public static final BlockColor VOID_BLOCK_COLOR
    • AIR_BLOCK_COLOR

      public static final BlockColor AIR_BLOCK_COLOR
    • GRASS_BLOCK_COLOR

      public static final BlockColor GRASS_BLOCK_COLOR
    • SAND_BLOCK_COLOR

      public static final BlockColor SAND_BLOCK_COLOR
    • CLOTH_BLOCK_COLOR

      public static final BlockColor CLOTH_BLOCK_COLOR
    • TNT_BLOCK_COLOR

      public static final BlockColor TNT_BLOCK_COLOR
    • ICE_BLOCK_COLOR

      public static final BlockColor ICE_BLOCK_COLOR
    • IRON_BLOCK_COLOR

      public static final BlockColor IRON_BLOCK_COLOR
    • FOLIAGE_BLOCK_COLOR

      public static final BlockColor FOLIAGE_BLOCK_COLOR
    • SNOW_BLOCK_COLOR

      public static final BlockColor SNOW_BLOCK_COLOR
    • CLAY_BLOCK_COLOR

      public static final BlockColor CLAY_BLOCK_COLOR
    • DIRT_BLOCK_COLOR

      public static final BlockColor DIRT_BLOCK_COLOR
    • STONE_BLOCK_COLOR

      public static final BlockColor STONE_BLOCK_COLOR
    • WATER_BLOCK_COLOR

      public static final BlockColor WATER_BLOCK_COLOR
    • LAVA_BLOCK_COLOR

      public static final BlockColor LAVA_BLOCK_COLOR
    • WOOD_BLOCK_COLOR

      public static final BlockColor WOOD_BLOCK_COLOR
    • QUARTZ_BLOCK_COLOR

      public static final BlockColor QUARTZ_BLOCK_COLOR
    • ADOBE_BLOCK_COLOR

      public static final BlockColor ADOBE_BLOCK_COLOR
    • WHITE_BLOCK_COLOR

      public static final BlockColor WHITE_BLOCK_COLOR
    • ORANGE_BLOCK_COLOR

      public static final BlockColor ORANGE_BLOCK_COLOR
    • MAGENTA_BLOCK_COLOR

      public static final BlockColor MAGENTA_BLOCK_COLOR
    • LIGHT_BLUE_BLOCK_COLOR

      public static final BlockColor LIGHT_BLUE_BLOCK_COLOR
    • YELLOW_BLOCK_COLOR

      public static final BlockColor YELLOW_BLOCK_COLOR
    • LIME_BLOCK_COLOR

      public static final BlockColor LIME_BLOCK_COLOR
    • PINK_BLOCK_COLOR

      public static final BlockColor PINK_BLOCK_COLOR
    • GRAY_BLOCK_COLOR

      public static final BlockColor GRAY_BLOCK_COLOR
    • LIGHT_GRAY_BLOCK_COLOR

      public static final BlockColor LIGHT_GRAY_BLOCK_COLOR
    • CYAN_BLOCK_COLOR

      public static final BlockColor CYAN_BLOCK_COLOR
    • PURPLE_BLOCK_COLOR

      public static final BlockColor PURPLE_BLOCK_COLOR
    • BLUE_BLOCK_COLOR

      public static final BlockColor BLUE_BLOCK_COLOR
    • BROWN_BLOCK_COLOR

      public static final BlockColor BROWN_BLOCK_COLOR
    • GREEN_BLOCK_COLOR

      public static final BlockColor GREEN_BLOCK_COLOR
    • RED_BLOCK_COLOR

      public static final BlockColor RED_BLOCK_COLOR
    • BLACK_BLOCK_COLOR

      public static final BlockColor BLACK_BLOCK_COLOR
    • GOLD_BLOCK_COLOR

      public static final BlockColor GOLD_BLOCK_COLOR
    • DIAMOND_BLOCK_COLOR

      public static final BlockColor DIAMOND_BLOCK_COLOR
    • LAPIS_BLOCK_COLOR

      public static final BlockColor LAPIS_BLOCK_COLOR
    • EMERALD_BLOCK_COLOR

      public static final BlockColor EMERALD_BLOCK_COLOR
    • OBSIDIAN_BLOCK_COLOR

      public static final BlockColor OBSIDIAN_BLOCK_COLOR
    • SPRUCE_BLOCK_COLOR

      public static final BlockColor SPRUCE_BLOCK_COLOR
    • NETHERRACK_BLOCK_COLOR

      public static final BlockColor NETHERRACK_BLOCK_COLOR
    • REDSTONE_BLOCK_COLOR

      public static final BlockColor REDSTONE_BLOCK_COLOR
    • WHITE_TERRACOTA_BLOCK_COLOR

      public static final BlockColor WHITE_TERRACOTA_BLOCK_COLOR
    • ORANGE_TERRACOTA_BLOCK_COLOR

      public static final BlockColor ORANGE_TERRACOTA_BLOCK_COLOR
    • MAGENTA_TERRACOTA_BLOCK_COLOR

      public static final BlockColor MAGENTA_TERRACOTA_BLOCK_COLOR
    • LIGHT_BLUE_TERRACOTA_BLOCK_COLOR

      public static final BlockColor LIGHT_BLUE_TERRACOTA_BLOCK_COLOR
    • YELLOW_TERRACOTA_BLOCK_COLOR

      public static final BlockColor YELLOW_TERRACOTA_BLOCK_COLOR
    • LIME_TERRACOTA_BLOCK_COLOR

      public static final BlockColor LIME_TERRACOTA_BLOCK_COLOR
    • PINK_TERRACOTA_BLOCK_COLOR

      public static final BlockColor PINK_TERRACOTA_BLOCK_COLOR
    • GRAY_TERRACOTA_BLOCK_COLOR

      public static final BlockColor GRAY_TERRACOTA_BLOCK_COLOR
    • LIGHT_GRAY_TERRACOTA_BLOCK_COLOR

      public static final BlockColor LIGHT_GRAY_TERRACOTA_BLOCK_COLOR
    • CYAN_TERRACOTA_BLOCK_COLOR

      public static final BlockColor CYAN_TERRACOTA_BLOCK_COLOR
    • PURPLE_TERRACOTA_BLOCK_COLOR

      public static final BlockColor PURPLE_TERRACOTA_BLOCK_COLOR
    • BLUE_TERRACOTA_BLOCK_COLOR

      public static final BlockColor BLUE_TERRACOTA_BLOCK_COLOR
    • BROWN_TERRACOTA_BLOCK_COLOR

      public static final BlockColor BROWN_TERRACOTA_BLOCK_COLOR
    • GREEN_TERRACOTA_BLOCK_COLOR

      public static final BlockColor GREEN_TERRACOTA_BLOCK_COLOR
    • RED_TERRACOTA_BLOCK_COLOR

      public static final BlockColor RED_TERRACOTA_BLOCK_COLOR
    • BLACK_TERRACOTA_BLOCK_COLOR

      public static final BlockColor BLACK_TERRACOTA_BLOCK_COLOR
  • Method Details

    • values

      public static BlockColor[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static BlockColor valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getRed

      public int getRed()
    • getGreen

      public int getGreen()
    • getBlue

      public int getBlue()
    • getAlpha

      public int getAlpha()
    • getRGB

      public int getRGB()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<BlockColor>