Enum Class DepthTestState

java.lang.Object
java.lang.Enum<DepthTestState>
net.minecraft.client.render.DepthTestState
All Implemented Interfaces:
Serializable, Comparable<DepthTestState>, Constable

@Environment(CLIENT) public enum DepthTestState extends Enum<DepthTestState>
Mappings:
Namespace Name
named net/minecraft/client/render/DepthTestState
intermediary net/minecraft/class_10798
official gpx
  • Enum Constant Details

    • NO_DEPTH_TEST

      public static final DepthTestState NO_DEPTH_TEST
      Mappings:
      Namespace Name Mixin selector
      named NO_DEPTH_TEST Lnet/minecraft/client/render/DepthTestState;NO_DEPTH_TEST:Lnet/minecraft/client/render/DepthTestState;
      intermediary field_56806 Lnet/minecraft/class_10798;field_56806:Lnet/minecraft/class_10798;
      official a Lgpx;a:Lgpx;
    • EQUAL_DEPTH_TEST

      public static final DepthTestState EQUAL_DEPTH_TEST
      Mappings:
      Namespace Name Mixin selector
      named EQUAL_DEPTH_TEST Lnet/minecraft/client/render/DepthTestState;EQUAL_DEPTH_TEST:Lnet/minecraft/client/render/DepthTestState;
      intermediary field_56807 Lnet/minecraft/class_10798;field_56807:Lnet/minecraft/class_10798;
      official b Lgpx;b:Lgpx;
    • LEQUAL_DEPTH_TEST

      public static final DepthTestState LEQUAL_DEPTH_TEST
      Mappings:
      Namespace Name Mixin selector
      named LEQUAL_DEPTH_TEST Lnet/minecraft/client/render/DepthTestState;LEQUAL_DEPTH_TEST:Lnet/minecraft/client/render/DepthTestState;
      intermediary field_56808 Lnet/minecraft/class_10798;field_56808:Lnet/minecraft/class_10798;
      official c Lgpx;c:Lgpx;
    • GREATER_DEPTH_TEST

      public static final DepthTestState GREATER_DEPTH_TEST
      Mappings:
      Namespace Name Mixin selector
      named GREATER_DEPTH_TEST Lnet/minecraft/client/render/DepthTestState;GREATER_DEPTH_TEST:Lnet/minecraft/client/render/DepthTestState;
      intermediary field_56809 Lnet/minecraft/class_10798;field_56809:Lnet/minecraft/class_10798;
      official d Lgpx;d:Lgpx;
  • Constructor Details

    • DepthTestState

      private DepthTestState()
  • Method Details

    • values

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