Enum Class Usage

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

@Environment(CLIENT) public enum Usage extends Enum<Usage>
Mappings:
Namespace Name
named net/minecraft/client/gl/Usage
intermediary net/minecraft/class_8555
official fce
  • Enum Constant Details

    • DYNAMIC_WRITE

      public static final Usage DYNAMIC_WRITE
      Mappings:
      Namespace Name Mixin selector
      named DYNAMIC_WRITE Lnet/minecraft/client/gl/Usage;DYNAMIC_WRITE:Lnet/minecraft/client/gl/Usage;
      intermediary field_54339 Lnet/minecraft/class_8555;field_54339:Lnet/minecraft/class_8555;
      official a Lfce;a:Lfce;
    • STATIC_WRITE

      public static final Usage STATIC_WRITE
      Mappings:
      Namespace Name Mixin selector
      named STATIC_WRITE Lnet/minecraft/client/gl/Usage;STATIC_WRITE:Lnet/minecraft/client/gl/Usage;
      intermediary field_54340 Lnet/minecraft/class_8555;field_54340:Lnet/minecraft/class_8555;
      official b Lfce;b:Lfce;
    • STREAM_WRITE

      public static final Usage STREAM_WRITE
      Mappings:
      Namespace Name Mixin selector
      named STREAM_WRITE Lnet/minecraft/client/gl/Usage;STREAM_WRITE:Lnet/minecraft/client/gl/Usage;
      intermediary field_54341 Lnet/minecraft/class_8555;field_54341:Lnet/minecraft/class_8555;
      official c Lfce;c:Lfce;
    • STATIC_READ

      public static final Usage STATIC_READ
      Mappings:
      Namespace Name Mixin selector
      named STATIC_READ Lnet/minecraft/client/gl/Usage;STATIC_READ:Lnet/minecraft/client/gl/Usage;
      intermediary field_54342 Lnet/minecraft/class_8555;field_54342:Lnet/minecraft/class_8555;
      official d Lfce;d:Lfce;
    • DYNAMIC_READ

      public static final Usage DYNAMIC_READ
      Mappings:
      Namespace Name Mixin selector
      named DYNAMIC_READ Lnet/minecraft/client/gl/Usage;DYNAMIC_READ:Lnet/minecraft/client/gl/Usage;
      intermediary field_54343 Lnet/minecraft/class_8555;field_54343:Lnet/minecraft/class_8555;
      official e Lfce;e:Lfce;
    • STREAM_READ

      public static final Usage STREAM_READ
      Mappings:
      Namespace Name Mixin selector
      named STREAM_READ Lnet/minecraft/client/gl/Usage;STREAM_READ:Lnet/minecraft/client/gl/Usage;
      intermediary field_54344 Lnet/minecraft/class_8555;field_54344:Lnet/minecraft/class_8555;
      official f Lfce;f:Lfce;
    • DYNAMIC_COPY

      public static final Usage DYNAMIC_COPY
      Mappings:
      Namespace Name Mixin selector
      named DYNAMIC_COPY Lnet/minecraft/client/gl/Usage;DYNAMIC_COPY:Lnet/minecraft/client/gl/Usage;
      intermediary field_54345 Lnet/minecraft/class_8555;field_54345:Lnet/minecraft/class_8555;
      official g Lfce;g:Lfce;
    • STATIC_COPY

      public static final Usage STATIC_COPY
      Mappings:
      Namespace Name Mixin selector
      named STATIC_COPY Lnet/minecraft/client/gl/Usage;STATIC_COPY:Lnet/minecraft/client/gl/Usage;
      intermediary field_54346 Lnet/minecraft/class_8555;field_54346:Lnet/minecraft/class_8555;
      official h Lfce;h:Lfce;
    • STREAM_COPY

      public static final Usage STREAM_COPY
      Mappings:
      Namespace Name Mixin selector
      named STREAM_COPY Lnet/minecraft/client/gl/Usage;STREAM_COPY:Lnet/minecraft/client/gl/Usage;
      intermediary field_54347 Lnet/minecraft/class_8555;field_54347:Lnet/minecraft/class_8555;
      official i Lfce;i:Lfce;
  • Field Details

    • id

      final int id
      Mappings:
      Namespace Name Mixin selector
      named id Lnet/minecraft/client/gl/Usage;id:I
      intermediary field_44795 Lnet/minecraft/class_8555;field_44795:I
      official j Lfce;j:I
    • field_54348

      final boolean field_54348
      Mappings:
      Namespace Name Mixin selector
      named field_54348 Lnet/minecraft/client/gl/Usage;field_54348:Z
      intermediary field_54348 Lnet/minecraft/class_8555;field_54348:Z
      official k Lfce;k:Z
    • field_54349

      final boolean field_54349
      Mappings:
      Namespace Name Mixin selector
      named field_54349 Lnet/minecraft/client/gl/Usage;field_54349:Z
      intermediary field_54349 Lnet/minecraft/class_8555;field_54349:Z
      official l Lfce;l:Z
  • Constructor Details

    • Usage

      private Usage(int id, boolean bool, boolean bool2)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/client/gl/Usage;<init>(Ljava/lang/String;IIZZ)V
      intermediary <init> Lnet/minecraft/class_8555;<init>(Ljava/lang/String;IIZZ)V
      official <init> Lfce;<init>(Ljava/lang/String;IIZZ)V
  • Method Details

    • values

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