Enum Class Decoration

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

@NullMarked @AsOf("2.3.0") @Generated("2026-07-15T18:48:22.496234Z") public enum Decoration extends Enum<Decoration> implements WrappedEnumerator<Decoration>
Auto-generated. Do not modify! Run ./gradlew generateSources to regenerate.

Wraps Minecraft's GenerationStep.Decoration.

Since:
2.3.0
  • Enum Constant Details

    • RAW_GENERATION

      public static final Decoration RAW_GENERATION
    • LAKES

      public static final Decoration LAKES
    • LOCAL_MODIFICATIONS

      public static final Decoration LOCAL_MODIFICATIONS
    • UNDERGROUND_STRUCTURES

      public static final Decoration UNDERGROUND_STRUCTURES
    • SURFACE_STRUCTURES

      public static final Decoration SURFACE_STRUCTURES
    • STRONGHOLDS

      public static final Decoration STRONGHOLDS
    • UNDERGROUND_ORES

      public static final Decoration UNDERGROUND_ORES
    • UNDERGROUND_DECORATION

      public static final Decoration UNDERGROUND_DECORATION
    • FLUID_SPRINGS

      public static final Decoration FLUID_SPRINGS
    • VEGETAL_DECORATION

      public static final Decoration VEGETAL_DECORATION
    • TOP_LAYER_MODIFICATION

      public static final Decoration TOP_LAYER_MODIFICATION
  • Field Details

  • Method Details

    • values

      public static Decoration[] 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 Decoration 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 name for this Decoration value.
      Returns:
      the vanilla key for this enum value
      Since:
      2.3.0
    • translator

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