Enum Class EDhApiWorldGenerationStep
java.lang.Object
java.lang.Enum<EDhApiWorldGenerationStep>
com.seibel.distanthorizons.api.enums.worldGeneration.EDhApiWorldGenerationStep
- All Implemented Interfaces:
Serializable
,Comparable<EDhApiWorldGenerationStep>
,Constable
DOWN_SAMPLED,
EMPTY,
STRUCTURE_START,
STRUCTURE_REFERENCE,
BIOMES,
NOISE,
SURFACE,
CARVERS,
LIQUID_CARVERS,
FEATURES,
LIGHT,
EMPTY,
STRUCTURE_START,
STRUCTURE_REFERENCE,
BIOMES,
NOISE,
SURFACE,
CARVERS,
LIQUID_CARVERS,
FEATURES,
LIGHT,
- Since:
- API 1.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionOnly used when using N-sized world generators or server-side retrieval. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic EDhApiWorldGenerationStep
static EDhApiWorldGenerationStep
fromValue
(int value) static EDhApiWorldGenerationStep
Returns the enum constant of this class with the specified name.static EDhApiWorldGenerationStep[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DOWN_SAMPLED
Only used when using N-sized world generators or server-side retrieval. This denotes that the given datasource was created using lower quality LOD data from above it in the quad tree.
This isn't a valid option for queuing world generation. -
EMPTY
-
STRUCTURE_START
-
STRUCTURE_REFERENCE
-
BIOMES
-
NOISE
-
SURFACE
-
CARVERS
-
LIQUID_CARVERS
-
FEATURES
-
LIGHT
-
-
Field Details
-
name
used when serializing this enum. -
value
public final byte value
-
-
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
-
fromValue
- Returns:
- null if the value doesn't correspond to a
EDhApiWorldGenerationStep
.
-
fromName
- Returns:
- null if the value doesn't correspond to a
EDhApiWorldGenerationStep
.
-