Enum Class WeaponType

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

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

    • MELEE_WRENCH

      public static final WeaponType MELEE_WRENCH
    • MELEE_KATANA

      public static final WeaponType MELEE_KATANA
    • MELEE_BEE_STING

      public static final WeaponType MELEE_BEE_STING
    • RANGED_SLINGSHOT

      public static final WeaponType RANGED_SLINGSHOT
    • RANGED_BOOMERANG

      public static final WeaponType RANGED_BOOMERANG
    • RANGED_BLUEMERANG

      public static final WeaponType RANGED_BLUEMERANG
    • RANGED_MISSILES

      public static final WeaponType RANGED_MISSILES
    • RANGED_HOMING

      public static final WeaponType RANGED_HOMING
    • STATIC_WEAPON

      public static final WeaponType STATIC_WEAPON
    • STICK

      public static final WeaponType STICK
    • WOODHAMMER

      public static final WeaponType WOODHAMMER
    • STONEHAMMER

      public static final WeaponType STONEHAMMER
    • STEELHAMMER

      public static final WeaponType STEELHAMMER
  • Method Details

    • values

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