Package org.bukkit.material.types
Enum MushroomBlockTexture
- All Implemented Interfaces:
Serializable
,Comparable<MushroomBlockTexture>
,java.lang.constant.Constable
Represents the different textured blocks of mushroom.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCap texture on all faces.Pores on all faces.Stem texture on all faces.Cap texture on the top and east faces, pores on remaining sides.Cap texture on the top and north faces, pores on remaining sides.Cap texture on the top, north and east faces, pores on remaining sides.Cap texture on the top, north and west faces, pores on remaining sides.Cap texture on the top and south faces, pores on remaining sides.Cap texture on the top, south and east faces, pores on remaining sides.Cap texture on the top, south and west faces, pores on remaining sides.Cap texture on the top face, pores on remaining sides.Cap texture on the top and west faces, pores on remaining sides.Stem texture on the north, east, south and west faces, pores on top and bottom. -
Method Summary
Modifier and TypeMethodDescriptionstatic MushroomBlockTexture
getByData
(byte data) Deprecated.Magic valuestatic MushroomBlockTexture
getCapByFace
(BlockFace face) Gets the MushroomBlockType with cap texture on the given block face.Gets the face that has cap texture.byte
getData()
Deprecated.Magic valuestatic MushroomBlockTexture
Returns the enum constant of this type with the specified name.static MushroomBlockTexture[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ALL_PORES
Pores on all faces. -
CAP_NORTH_WEST
Cap texture on the top, north and west faces, pores on remaining sides. -
CAP_NORTH
Cap texture on the top and north faces, pores on remaining sides. -
CAP_NORTH_EAST
Cap texture on the top, north and east faces, pores on remaining sides. -
CAP_WEST
Cap texture on the top and west faces, pores on remaining sides. -
CAP_TOP
Cap texture on the top face, pores on remaining sides. -
CAP_EAST
Cap texture on the top and east faces, pores on remaining sides. -
CAP_SOUTH_WEST
Cap texture on the top, south and west faces, pores on remaining sides. -
CAP_SOUTH
Cap texture on the top and south faces, pores on remaining sides. -
CAP_SOUTH_EAST
Cap texture on the top, south and east faces, pores on remaining sides. -
STEM_SIDES
Stem texture on the north, east, south and west faces, pores on top and bottom. -
ALL_CAP
Cap texture on all faces. -
ALL_STEM
Stem texture on all faces.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getData
Deprecated.Magic valueGets the associated data value representing this mushroom block face.- Returns:
- A byte containing the data value of this mushroom block face
-
getCapFace
Gets the face that has cap texture.- Returns:
- The cap face
-
getByData
Deprecated.Magic valueGets 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
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:
-