Package net.risingworld.api.utils
Enum Class SpawnPointType
- All Implemented Interfaces:
Serializable
,Comparable<SpawnPointType>
,Constable
Spawn point types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDefault spawn type (labeled as "Wilderness")Primary spawn type (labeled as "Home")Quaternary spawn type (currently unused)Secondary spawn type (usually labeled as "Tent")Tertiary spawn type (currently unused) -
Method Summary
Modifier and TypeMethodDescriptionstatic SpawnPointType
get
(int ordinal) static SpawnPointType
Returns the enum constant of this class with the specified name.static SpawnPointType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Default
Default spawn type (labeled as "Wilderness") -
Primary
Primary spawn type (labeled as "Home") -
Secondary
Secondary spawn type (usually labeled as "Tent") -
Tertiary
Tertiary spawn type (currently unused) -
Quaternary
Quaternary spawn type (currently unused)
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
get
-