Enum Class BuffType

java.lang.Object
java.lang.Enum<BuffType>
com.sucy.skill.api.util.BuffType
All Implemented Interfaces:
Serializable, Comparable<BuffType>, Constable

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

    • DAMAGE

      public static final BuffType DAMAGE
    • DEFENSE

      public static final BuffType DEFENSE
    • SKILL_DAMAGE

      public static final BuffType SKILL_DAMAGE
    • SKILL_DEFENSE

      public static final BuffType SKILL_DEFENSE
    • HEALING

      public static final BuffType HEALING
  • Method Details

    • values

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