Enum Class EventType

java.lang.Object
java.lang.Enum<EventType>
dev.gothickit.zenkit.mds.EventType
All Implemented Interfaces:
EnumNative<EventType>, Serializable, Comparable<EventType>, Constable

public enum EventType extends Enum<EventType> implements EnumNative<EventType>
  • Enum Constant Details

    • UNKNOWN

      public static final EventType UNKNOWN
    • ITEM_CREATE

      public static final EventType ITEM_CREATE
    • ITEM_INSERT

      public static final EventType ITEM_INSERT
    • ITEM_REMOVE

      public static final EventType ITEM_REMOVE
    • ITEM_DESTROY

      public static final EventType ITEM_DESTROY
    • ITEM_PLACE

      public static final EventType ITEM_PLACE
    • ITEM_EXCHANGE

      public static final EventType ITEM_EXCHANGE
    • SET_FIGHT_MODE

      public static final EventType SET_FIGHT_MODE
    • MUNITION_PLACE

      public static final EventType MUNITION_PLACE
    • MUNITION_REMOVE

      public static final EventType MUNITION_REMOVE
    • SOUND_DRAW

      public static final EventType SOUND_DRAW
    • SOUND_UNDRAW

      public static final EventType SOUND_UNDRAW
    • MESH_SWAP

      public static final EventType MESH_SWAP
    • TORCH_DRAW

      public static final EventType TORCH_DRAW
    • TORCH_INVENTORY

      public static final EventType TORCH_INVENTORY
    • TORCH_DROP

      public static final EventType TORCH_DROP
    • HIT_LIMB

      public static final EventType HIT_LIMB
    • HIT_DIRECTION

      public static final EventType HIT_DIRECTION
    • DAMAGE_MULTIPLIER

      public static final EventType DAMAGE_MULTIPLIER
    • PARRY_FRAME

      public static final EventType PARRY_FRAME
    • OPTIMAL_FRAME

      public static final EventType OPTIMAL_FRAME
    • HIT_END

      public static final EventType HIT_END
    • COMBO_WINDOW

      public static final EventType COMBO_WINDOW
  • Method Details

    • values

      public static EventType[] 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 EventType 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
    • getIntValue

      public int getIntValue()
      Specified by:
      getIntValue in interface EnumNative<EventType>
    • getForValue

      public EventType getForValue(int i)
      Specified by:
      getForValue in interface EnumNative<EventType>