Enum Class ChunkSectionLayer

java.lang.Object
java.lang.Enum<ChunkSectionLayer>
net.minecraft.client.renderer.chunk.ChunkSectionLayer
All Implemented Interfaces:
Serializable, Comparable<ChunkSectionLayer>, Constable

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

  • Field Details

    • pipeline

      private final RenderPipeline pipeline
    • bufferSize

      private final int bufferSize
    • translucent

      private final boolean translucent
    • label

      private final String label
  • Constructor Details

    • ChunkSectionLayer

      private ChunkSectionLayer(RenderPipeline pipeline, int bufferSize, boolean translucent)
  • Method Details

    • values

      public static ChunkSectionLayer[] 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 ChunkSectionLayer 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
    • byTransparency

      public static ChunkSectionLayer byTransparency(Transparency transparency)
    • pipeline

      public RenderPipeline pipeline()
    • bufferSize

      public int bufferSize()
    • label

      public String label()
    • translucent

      public boolean translucent()