Package org.bukkit

Enum Class WorldType

All Implemented Interfaces:
Serializable, Comparable<WorldType>, Constable

public enum WorldType extends Enum<WorldType>
Represents various types of worlds that may exist
  • Enum Constant Details

    • NORMAL

      public static final WorldType NORMAL
    • FLAT

      public static final WorldType FLAT
    • LARGE_BIOMES

      public static final WorldType LARGE_BIOMES
    • AMPLIFIED

      public static final WorldType AMPLIFIED
  • Method Details

    • values

      public static WorldType[] 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 WorldType 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
    • getName

      @NotNull public @NotNull String getName()
      Gets the name of this WorldType
      Returns:
      Name of this type
    • getByName

      @Nullable public static @Nullable WorldType getByName(@NotNull @NotNull String name)
      Gets a WorldType by its name
      Parameters:
      name - Name of the WorldType to get
      Returns:
      Requested WorldType, or null if not found