Enum Class Map

java.lang.Object
java.lang.Enum<Map>
xyz.stachel.zombiesutils.api.game.Map
All Implemented Interfaces:
Serializable, Comparable<Map>, Constable

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

    • DEAD_END

      public static final Map DEAD_END
    • BAD_BLOOD

      public static final Map BAD_BLOOD
    • ALIEN_ARCADIUM

      public static final Map ALIEN_ARCADIUM
    • PRISON

      public static final Map PRISON
  • Field Details

    • numRounds

      public final int numRounds
  • Method Details

    • values

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