Record Class TextureStitcher.Holder<T extends TextureStitcher.Stitchable>

java.lang.Object
java.lang.Record
net.minecraft.client.texture.TextureStitcher.Holder<T>
Record Components:
sprite -
width -
height -
Enclosing class:
TextureStitcher<T extends TextureStitcher.Stitchable>

@Environment(CLIENT) private static record TextureStitcher.Holder<T extends TextureStitcher.Stitchable>(T extends TextureStitcher.Stitchable sprite, int width, int height) extends Record
Mappings:
Namespace Name
official foi$b
intermediary net/minecraft/class_1055$class_1056
named net/minecraft/client/texture/TextureStitcher$Holder
official a
intermediary comp_1046
named sprite
official b
intermediary comp_1047
named width
official c
intermediary comp_1048
named height
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final int
    The field for the height record component.
    private final T
    The field for the sprite record component.
    private final int
    The field for the width record component.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
     
    Holder(T sprite, int mipLevel)
     
    private
    Holder(T t, int int2, int int3)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    equals(Object object)
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    int
    Returns the value of the height record component.
    Returns the value of the sprite record component.
    final String
    Returns a string representation of this record class.
    int
    Returns the value of the width record component.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • sprite

      private final T extends TextureStitcher.Stitchable sprite
      The field for the sprite record component.
    • width

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

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

    • Holder

      public Holder(T sprite, int mipLevel)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lfoi$b;<init>(Lfoi$a;I)V
      intermediary <init> Lnet/minecraft/class_1055$class_1056;<init>(Lnet/minecraft/class_1055$class_7769;I)V
      named <init> Lnet/minecraft/client/texture/TextureStitcher$Holder;<init>(Lnet/minecraft/client/texture/TextureStitcher$Stitchable;I)V
    • Holder

      private Holder(T t, int int2, int int3)
  • Method Details

    • 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.
    • sprite

      public T sprite()
      Returns the value of the sprite record component.
      Returns:
      the value of the sprite record component
    • 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