Enum Class EntityAnimation

java.lang.Object
java.lang.Enum<EntityAnimation>
me.gamercoder215.mobchip.ai.animation.EntityAnimation
All Implemented Interfaces:
Serializable, Comparable<EntityAnimation>, Constable, Keyed

public enum EntityAnimation extends Enum<EntityAnimation> implements Keyed
Represents an Entity Animation
  • Enum Constant Details

    • DAMAGE

      public static final EntityAnimation DAMAGE
      Represents the Damage Animation when taking damage
    • CRITICAL_DAMAGE

      public static final EntityAnimation CRITICAL_DAMAGE
      Represents the Damage Animation when taking damage on a critical hit
    • MAGICAL_CRITICAL_DAMAGE

      public static final EntityAnimation MAGICAL_CRITICAL_DAMAGE
      Represents the Damage Animation when taking damage on a magical critical hit
    • SPAWN

      public static final EntityAnimation SPAWN
      Represents the Mob's Spawning Animation
  • Method Details

    • values

      public static EntityAnimation[] 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

      public static EntityAnimation 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
    • getKey

      @NotNull public @NotNull NamespacedKey getKey()
      Specified by:
      getKey in interface Keyed
    • getByKey

      Fetches an EntityAnimation by its NamespacedKey.
      Parameters:
      key - Key to fetch
      Returns:
      EntityAnimation found, or null if not found