Enum Class CaveSurface

java.lang.Object
java.lang.Enum<CaveSurface>
net.minecraft.world.level.levelgen.placement.CaveSurface
All Implemented Interfaces:
Serializable, Comparable<CaveSurface>, Constable, StringRepresentable

public enum CaveSurface extends Enum<CaveSurface> implements StringRepresentable
  • Enum Constant Details

  • Field Details

    • CODEC

      public static final com.mojang.serialization.Codec<CaveSurface> CODEC
    • direction

      private final Direction direction
    • y

      private final int y
    • id

      private final String id
    • VALUES

      private static final CaveSurface[] VALUES
  • Constructor Details

    • CaveSurface

      private CaveSurface(Direction p_162104_, int p_162105_, String p_162106_)
  • Method Details

    • values

      public static CaveSurface[] 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 CaveSurface 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
    • getDirection

      public Direction getDirection()
    • getY

      public int getY()
    • byName

      public static CaveSurface byName(String p_162109_)
    • getSerializedName

      public String getSerializedName()
      Specified by:
      getSerializedName in interface StringRepresentable