Enum Class EntityAnimation
- All Implemented Interfaces:
Serializable
,Comparable<EntityAnimation>
,Constable
,Keyed
Represents an Entity Animation
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents the Damage Animation when taking damage on a critical hitRepresents the Damage Animation when taking damageRepresents the Damage Animation when taking damage on a magical critical hitRepresents the Mob's Spawning Animation -
Method Summary
Modifier and TypeMethodDescriptionstatic @Nullable EntityAnimation
Fetches an EntityAnimation by its NamespacedKey.getKey()
static EntityAnimation
Returns the enum constant of this class with the specified name.static EntityAnimation[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DAMAGE
Represents the Damage Animation when taking damage -
CRITICAL_DAMAGE
Represents the Damage Animation when taking damage on a critical hit -
MAGICAL_CRITICAL_DAMAGE
Represents the Damage Animation when taking damage on a magical critical hit -
SPAWN
Represents the Mob's Spawning Animation
-
-
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
-
getKey
-
getByKey
Fetches an EntityAnimation by its NamespacedKey.- Parameters:
key
- Key to fetch- Returns:
- EntityAnimation found, or null if not found
-