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
FLAT
LARGE_BIOMES
NORMAL
-
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.
-
-
-
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
-
-