Enum Class MushroomBlockTexture

java.lang.Object
java.lang.Enum<MushroomBlockTexture>
org.bukkit.material.types.MushroomBlockTexture
All Implemented Interfaces:
Serializable, Comparable<MushroomBlockTexture>, Constable

public enum MushroomBlockTexture extends Enum<MushroomBlockTexture>
Represents the different textured blocks of mushroom.
  • Enum Constant Details Link icon

    • ALL_PORES Link icon

      public static final MushroomBlockTexture ALL_PORES
      Pores on all faces.
    • CAP_NORTH_WEST Link icon

      public static final MushroomBlockTexture CAP_NORTH_WEST
      Cap texture on the top, north and west faces, pores on remaining sides.
    • CAP_NORTH Link icon

      public static final MushroomBlockTexture CAP_NORTH
      Cap texture on the top and north faces, pores on remaining sides.
    • CAP_NORTH_EAST Link icon

      public static final MushroomBlockTexture CAP_NORTH_EAST
      Cap texture on the top, north and east faces, pores on remaining sides.
    • CAP_WEST Link icon

      public static final MushroomBlockTexture CAP_WEST
      Cap texture on the top and west faces, pores on remaining sides.
    • CAP_TOP Link icon

      public static final MushroomBlockTexture CAP_TOP
      Cap texture on the top face, pores on remaining sides.
    • CAP_EAST Link icon

      public static final MushroomBlockTexture CAP_EAST
      Cap texture on the top and east faces, pores on remaining sides.
    • CAP_SOUTH_WEST Link icon

      public static final MushroomBlockTexture CAP_SOUTH_WEST
      Cap texture on the top, south and west faces, pores on remaining sides.
    • CAP_SOUTH Link icon

      public static final MushroomBlockTexture CAP_SOUTH
      Cap texture on the top and south faces, pores on remaining sides.
    • CAP_SOUTH_EAST Link icon

      public static final MushroomBlockTexture CAP_SOUTH_EAST
      Cap texture on the top, south and east faces, pores on remaining sides.
    • STEM_SIDES Link icon

      public static final MushroomBlockTexture STEM_SIDES
      Stem texture on the north, east, south and west faces, pores on top and bottom.
    • ALL_CAP Link icon

      public static final MushroomBlockTexture ALL_CAP
      Cap texture on all faces.
    • ALL_STEM Link icon

      public static final MushroomBlockTexture ALL_STEM
      Stem texture on all faces.
  • Method Details Link icon

    • values Link icon

      public static MushroomBlockTexture[] 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 Link icon

      public static MushroomBlockTexture 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
    • getData Link icon

      @Deprecated(since="1.9") public byte getData()
      Deprecated.
      Magic value
      Gets the associated data value representing this mushroom block face.
      Returns:
      A byte containing the data value of this mushroom block face
    • getCapFace Link icon

      @Nullable public BlockFace getCapFace()
      Gets the face that has cap texture.
      Returns:
      The cap face
    • getByData Link icon

      @Deprecated(since="1.9") @Nullable public static MushroomBlockTexture getByData(byte data)
      Deprecated.
      Magic value
      Gets the MushroomBlockType with the given data value.
      Parameters:
      data - Data value to fetch
      Returns:
      The MushroomBlockTexture representing the given value, or null if it doesn't exist
    • getCapByFace Link icon

      @Nullable public static MushroomBlockTexture getCapByFace(@Nullable BlockFace face)
      Gets the MushroomBlockType with cap texture on the given block face.
      Parameters:
      face - the required block face with cap texture
      Returns:
      The MushroomBlockTexture representing the given block face, or null if it doesn't exist
      See Also: