Enum Class PowerupType

java.lang.Object
java.lang.Enum<PowerupType>
com.csse3200.game.components.PowerupType
All Implemented Interfaces:
Serializable, Comparable<PowerupType>, Constable

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

    • HEALTH_BOOST

      public static final PowerupType HEALTH_BOOST
    • SPEED_BOOST

      public static final PowerupType SPEED_BOOST
    • EXTRA_LIFE

      public static final PowerupType EXTRA_LIFE
    • DOUBLE_CROSS

      public static final PowerupType DOUBLE_CROSS
    • TEMP_IMMUNITY

      public static final PowerupType TEMP_IMMUNITY
    • DOUBLE_DAMAGE

      public static final PowerupType DOUBLE_DAMAGE
    • SNAP

      public static final PowerupType SNAP
    • DEATH_POTION

      public static final PowerupType DEATH_POTION
  • Method Details

    • values

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