Package org.bukkit
Enum WorldType
- All Implemented Interfaces:
Serializable
,Comparable<WorldType>
,Constable
public enum WorldType extends Enum<WorldType>
Represents various types of worlds that may exist
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description AMPLIFIED
FLAT
LARGE_BIOMES
NORMAL
-
Method Summary
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 Details
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
Gets the name of this WorldType- Returns:
- Name of this type
-
getByName
Gets a WorldType by its name- Parameters:
name
- Name of the WorldType to get- Returns:
- Requested WorldType, or null if not found
-