Enum Class LightType

java.lang.Object
java.lang.Enum<LightType>
net.minecraft.world.LightType
All Implemented Interfaces:
Serializable, Comparable<LightType>, Constable

public enum LightType extends Enum<LightType>
Mappings:
Namespace Name
intermediary net/minecraft/class_56
glue class_97
server co
client eb
named net/minecraft/world/LightType
  • Enum Constant Details

    • SKY

      public static final LightType SKY
      Mappings:
      Namespace Name Mixin selector
      intermediary field_2757 Lnet/minecraft/class_56;field_2757:Lnet/minecraft/class_56;
      glue field_231 Lclass_97;field_231:Lclass_97;
      server a Lco;a:Lco;
      client a Leb;a:Leb;
      named SKY Lnet/minecraft/world/LightType;SKY:Lnet/minecraft/world/LightType;
    • BLOCK

      public static final LightType BLOCK
      Mappings:
      Namespace Name Mixin selector
      intermediary field_2758 Lnet/minecraft/class_56;field_2758:Lnet/minecraft/class_56;
      glue field_232 Lclass_97;field_232:Lclass_97;
      server b Lco;b:Lco;
      client b Leb;b:Leb;
      named BLOCK Lnet/minecraft/world/LightType;BLOCK:Lnet/minecraft/world/LightType;
  • Field Details

    • defaultValue

      public final int defaultValue
      Mappings:
      Namespace Name Mixin selector
      intermediary field_2759 Lnet/minecraft/class_56;field_2759:I
      glue field_233 Lclass_97;field_233:I
      server c Lco;c:I
      client c Leb;c:I
      named defaultValue Lnet/minecraft/world/LightType;defaultValue:I
  • Constructor Details

    • LightType

      private LightType(int defaultValue)
      Mappings:
      Namespace Name Mixin selector
      intermediary <init> Lnet/minecraft/class_56;<init>(Ljava/lang/String;II)V
      glue <init> Lclass_97;<init>(Ljava/lang/String;II)V
      server <init> Lco;<init>(Ljava/lang/String;II)V
      client <init> Leb;<init>(Ljava/lang/String;II)V
      named <init> Lnet/minecraft/world/LightType;<init>(Ljava/lang/String;II)V
  • Method Details

    • values

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