Enum Class EDhApiBlockMaterial
java.lang.Object
java.lang.Enum<EDhApiBlockMaterial>
com.seibel.distanthorizons.api.enums.rendering.EDhApiBlockMaterial
- All Implemented Interfaces:
Serializable
,Comparable<EDhApiBlockMaterial>
,Constable
contains the indices used by shaders to determine
how different block types should be rendered.
UNKNOWN,
LEAVES,
STONE,
WOOD,
METAL,
DIRT,
LAVA,
DEEPSLATE,
SNOW,
SAND,
TERRACOTTA,
NETHER_STONE,
WATER,
GRASS,
AIR,
ILLUMINATED,
UNKNOWN,
LEAVES,
STONE,
WOOD,
METAL,
DIRT,
LAVA,
DEEPSLATE,
SNOW,
SAND,
TERRACOTTA,
NETHER_STONE,
WATER,
GRASS,
AIR,
ILLUMINATED,
- Since:
- API 3.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic EDhApiBlockMaterial
getFromIndex
(int index) static EDhApiBlockMaterial
Returns the enum constant of this class with the specified name.static EDhApiBlockMaterial[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
-
LEAVES
-
STONE
-
WOOD
-
METAL
-
DIRT
-
LAVA
-
DEEPSLATE
-
SNOW
-
SAND
-
TERRACOTTA
-
NETHER_STONE
-
WATER
-
GRASS
-
AIR
shouldn't normally be needed, but just in case -
ILLUMINATED
-
-
Field Details
-
index
public final byte index
-
-
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
-
getFromIndex
-