Enum Class EnemyType

java.lang.Object
java.lang.Enum<EnemyType>
com.csse3200.game.entities.enemies.EnemyType
All Implemented Interfaces:
Serializable, Comparable<EnemyType>, Constable

public enum EnemyType extends Enum<EnemyType>
Determines the enemy type of whether it is a: Melee (small melee enemy) Ranged (small ranged enemy) BossMelee (Boss melee enemy) BossRanged (Boss ranged enemy)
  • Enum Constant Details

    • Melee

      public static final EnemyType Melee
    • Ranged

      public static final EnemyType Ranged
    • BossMelee

      public static final EnemyType BossMelee
    • BossRanged

      public static final EnemyType BossRanged
  • Method Details

    • values

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