Record Class SpriteLoader.StitchResult

java.lang.Object
java.lang.Record
net.minecraft.client.texture.SpriteLoader.StitchResult
Record Components:
width -
height -
mipLevel -
missing -
regions -
readyForUpload -
Enclosing class:
SpriteLoader

@Environment(CLIENT) public static record SpriteLoader.StitchResult(int width, int height, int mipLevel, Sprite missing, Map<Identifier,Sprite> regions, CompletableFuture<Void> readyForUpload) extends Record
Mappings:
Namespace Name
official fog$a
intermediary net/minecraft/class_7766$class_7767
named net/minecraft/client/texture/SpriteLoader$StitchResult
official a
intermediary comp_1040
named width
official b
intermediary comp_1041
named height
official c
intermediary comp_1042
named mipLevel
official d
intermediary comp_1043
named missing
official e
intermediary comp_1044
named regions
official f
intermediary comp_1045
named readyForUpload
  • Field Details

    • width

      private final int width
      The field for the width record component.
    • height

      private final int height
      The field for the height record component.
    • mipLevel

      private final int mipLevel
      The field for the mipLevel record component.
    • missing

      private final Sprite missing
      The field for the missing record component.
    • regions

      private final Map<Identifier,Sprite> regions
      The field for the regions record component.
    • readyForUpload

      private final CompletableFuture<Void> readyForUpload
      The field for the readyForUpload record component.
  • Constructor Details

  • Method Details

    • whenComplete

      Mappings:
      Namespace Name Mixin selector
      official a Lfog$a;a()Ljava/util/concurrent/CompletableFuture;
      intermediary method_45845 Lnet/minecraft/class_7766$class_7767;method_45845()Ljava/util/concurrent/CompletableFuture;
      named whenComplete Lnet/minecraft/client/texture/SpriteLoader$StitchResult;whenComplete()Ljava/util/concurrent/CompletableFuture;
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object object)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • width

      public int width()
      Returns the value of the width record component.
      Returns:
      the value of the width record component
    • height

      public int height()
      Returns the value of the height record component.
      Returns:
      the value of the height record component
    • mipLevel

      public int mipLevel()
      Returns the value of the mipLevel record component.
      Returns:
      the value of the mipLevel record component
    • missing

      public Sprite missing()
      Returns the value of the missing record component.
      Returns:
      the value of the missing record component
    • regions

      public Map<Identifier,Sprite> regions()
      Returns the value of the regions record component.
      Returns:
      the value of the regions record component
    • readyForUpload

      public CompletableFuture<Void> readyForUpload()
      Returns the value of the readyForUpload record component.
      Returns:
      the value of the readyForUpload record component