Enum Class PlayerUpdateStatusEvent.Type
java.lang.Object
java.lang.Enum<PlayerUpdateStatusEvent.Type>
net.risingworld.api.events.player.PlayerUpdateStatusEvent.Type
- All Implemented Interfaces:
Serializable
,Comparable<PlayerUpdateStatusEvent.Type>
,Constable
- Enclosing class:
PlayerUpdateStatusEvent
Status update type
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionPlayer starts/stops bleedingPlayer breaks his bones (or fixed his bones)Player got sick (or was cured)Everything was updatedPlayer health changedPlayer hunger changedNothing was updated.Player body temperature changedPlayer thirst changedPlayer is getting wet (or dry) -
Method Summary
Modifier and TypeMethodDescriptionstatic PlayerUpdateStatusEvent.Type
Returns the enum constant of this class with the specified name.static PlayerUpdateStatusEvent.Type[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
None
Nothing was updated. Can be ignored... -
Health
Player health changed -
Hunger
Player hunger changed -
Thirst
Player thirst changed -
BrokenBones
Player breaks his bones (or fixed his bones) -
Bleeding
Player starts/stops bleeding -
Temperature
Player body temperature changed -
Wetness
Player is getting wet (or dry) -
Disease
Player got sick (or was cured) -
Everything
Everything was updated
-
-
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
-