Enum Class BiomeType

java.lang.Object
java.lang.Enum<BiomeType>
paulevs.edenring.world.generator.BiomeType
All Implemented Interfaces:
Serializable, Comparable<BiomeType>, Constable

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

    • EDEN

      public static final BiomeType EDEN
    • EDEN_LAND

      public static final BiomeType EDEN_LAND
    • EDEN_CAVE

      public static final BiomeType EDEN_CAVE
    • EDEN_AIR

      public static final BiomeType EDEN_AIR
  • Method Details

    • values

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