Package org.bukkit
Enum HeightMap
- java.lang.Object
-
- java.lang.Enum<HeightMap>
-
- org.bukkit.HeightMap
-
- All Implemented Interfaces:
Serializable
,Comparable<HeightMap>
public enum HeightMap extends Enum<HeightMap>
Further information regarding heightmaps.- See Also:
- Gamepedia Chunk Format
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MOTION_BLOCKING
The highest block that blocks motion or contains a fluid.MOTION_BLOCKING_NO_LEAVES
The highest block that blocks motion or contains a fluid or is in theTag.LEAVES
.OCEAN_FLOOR
The highest non-air block, solid block.OCEAN_FLOOR_WG
The highest block that is neither air nor contains a fluid, for worldgen.WORLD_SURFACE
The highest non-air block.WORLD_SURFACE_WG
The highest non-air block, for worldgen.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HeightMap
valueOf(String name)
Returns the enum constant of this type with the specified name.static HeightMap[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MOTION_BLOCKING
public static final HeightMap MOTION_BLOCKING
The highest block that blocks motion or contains a fluid.
-
MOTION_BLOCKING_NO_LEAVES
public static final HeightMap MOTION_BLOCKING_NO_LEAVES
The highest block that blocks motion or contains a fluid or is in theTag.LEAVES
.
-
OCEAN_FLOOR
public static final HeightMap OCEAN_FLOOR
The highest non-air block, solid block.
-
OCEAN_FLOOR_WG
public static final HeightMap OCEAN_FLOOR_WG
The highest block that is neither air nor contains a fluid, for worldgen.
-
WORLD_SURFACE
public static final HeightMap WORLD_SURFACE
The highest non-air block.
-
WORLD_SURFACE_WG
public static final HeightMap WORLD_SURFACE_WG
The highest non-air block, for worldgen.
-
-
Method Detail
-
values
public static HeightMap[] 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 (HeightMap c : HeightMap.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HeightMap 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
-
-