Package org.bukkit.entity
Enum Class Display.Billboard
- All Implemented Interfaces:
Serializable
,Comparable<Display.Billboard>
,Constable
- Enclosing interface:
Display
Describes the axes/points around which the entity can pivot.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCan pivot around center point.No rotation (default).Can pivot around horizontal axis.Can pivot around vertical axis. -
Method Summary
Modifier and TypeMethodDescriptionstatic Display.Billboard
Returns the enum constant of this class with the specified name.static Display.Billboard[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FIXED
No rotation (default). -
VERTICAL
Can pivot around vertical axis. -
HORIZONTAL
Can pivot around horizontal axis. -
CENTER
Can pivot around center point.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-