Package org.bukkit
Enum WorldType
- java.lang.Object
-
- java.lang.Enum<WorldType>
-
- org.bukkit.WorldType
-
- All Implemented Interfaces:
Serializable
,Comparable<WorldType>
public enum WorldType extends Enum<WorldType>
Represents various types of worlds that may exist
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AMPLIFIED
BUFFET
CUSTOMIZED
FLAT
LARGE_BIOMES
NORMAL
VERSION_1_1
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WorldType
getByName(String name)
Gets a WorldType by its nameString
getName()
Gets the name of this WorldTypestatic WorldType
valueOf(String name)
Returns the enum constant of this type with the specified name.static WorldType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORMAL
public static final WorldType NORMAL
-
FLAT
public static final WorldType FLAT
-
VERSION_1_1
public static final WorldType VERSION_1_1
-
LARGE_BIOMES
public static final WorldType LARGE_BIOMES
-
AMPLIFIED
public static final WorldType AMPLIFIED
-
CUSTOMIZED
public static final WorldType CUSTOMIZED
-
BUFFET
public static final WorldType BUFFET
-
-
Method Detail
-
values
public static WorldType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WorldType c : WorldType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorldType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getName
@NotNull public String getName()
Gets the name of this WorldType- Returns:
- Name of this type
-
-