java.lang.Object
java.lang.Enum<Animation>
org.geysermc.mcprotocollib.protocol.data.game.entity.player.Animation
All Implemented Interfaces:
Serializable, Comparable<Animation>, Constable

public enum Animation extends Enum<Animation>
  • Enum Constant Details

    • SWING_ARM

      public static final Animation SWING_ARM
    • LEAVE_BED

      public static final Animation LEAVE_BED
    • SWING_OFFHAND

      public static final Animation SWING_OFFHAND
    • CRITICAL_HIT

      public static final Animation CRITICAL_HIT
    • ENCHANTMENT_CRITICAL_HIT

      public static final Animation ENCHANTMENT_CRITICAL_HIT
  • Method Details

    • values

      public static Animation[] 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 Animation 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
    • getId

      public int getId()
    • from

      public static @Nullable Animation from(int id)