Enum Class HeightmapTypes

java.lang.Object
java.lang.Enum<HeightmapTypes>
org.geysermc.mcprotocollib.protocol.data.game.level.HeightmapTypes
All Implemented Interfaces:
Serializable, Comparable<HeightmapTypes>, Constable

public enum HeightmapTypes extends Enum<HeightmapTypes>
  • Enum Constant Details

    • WORLD_SURFACE_WG

      public static final HeightmapTypes WORLD_SURFACE_WG
    • WORLD_SURFACE

      public static final HeightmapTypes WORLD_SURFACE
    • OCEAN_FLOOR_WG

      public static final HeightmapTypes OCEAN_FLOOR_WG
    • OCEAN_FLOOR

      public static final HeightmapTypes OCEAN_FLOOR
    • MOTION_BLOCKING

      public static final HeightmapTypes MOTION_BLOCKING
    • MOTION_BLOCKING_NO_LEAVES

      public static final HeightmapTypes MOTION_BLOCKING_NO_LEAVES
  • Method Details

    • values

      public static HeightmapTypes[] 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

      public static HeightmapTypes valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • from

      public static HeightmapTypes from(int id)