Enum Class HeightmapType

java.lang.Object
java.lang.Enum<HeightmapType>
dev.wyck.wrapper.worldgen.HeightmapType
All Implemented Interfaces:
WrappedEnumerator<HeightmapType>, Serializable, Comparable<HeightmapType>, Constable

@NullMarked @AsOf("2.3.0") public enum HeightmapType extends Enum<HeightmapType> implements WrappedEnumerator<HeightmapType>
Wraps Minecraft's Heightmap.Types, the heightmap a placement samples against.
Since:
2.3.0
  • Enum Constant Details

    • WORLD_SURFACE_WG

      public static final HeightmapType WORLD_SURFACE_WG
    • WORLD_SURFACE

      public static final HeightmapType WORLD_SURFACE
    • OCEAN_FLOOR_WG

      public static final HeightmapType OCEAN_FLOOR_WG
    • OCEAN_FLOOR

      public static final HeightmapType OCEAN_FLOOR
    • MOTION_BLOCKING

      public static final HeightmapType MOTION_BLOCKING
    • MOTION_BLOCKING_NO_LEAVES

      public static final HeightmapType MOTION_BLOCKING_NO_LEAVES
  • Field Details

  • Method Details

    • values

      public static HeightmapType[] 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 HeightmapType 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
    • getKey

      @AsOf("2.3.0") public String getKey()
      The vanilla serialized name for this heightmap type.
      Returns:
      the vanilla key for this enum value
      Since:
      2.3.0
    • translator

      @AsOf("2.3.0") public KeyedEnumTranslator<HeightmapType> translator()
      Specified by:
      translator in interface WrappedEnumerator<HeightmapType>