Record Class PalettedTextureManager.Slot

java.lang.Object
java.lang.Record
net.minecraft.client.resources.palette.PalettedTextureManager.Slot
All Implemented Interfaces:
UvMapping, PalettedTextureManager.Handle
Enclosing class:
PalettedTextureManager

private static record PalettedTextureManager.Slot(AbstractTexture texture, Identifier textureLocation, int x, int y, int width, int height) extends Record implements PalettedTextureManager.Handle
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final int
    The field for the height record component.
    private final AbstractTexture
    The field for the texture record component.
    private final Identifier
    The field for the textureLocation record component.
    private final int
    The field for the width record component.
    private final int
    The field for the x record component.
    private final int
    The field for the y record component.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    private
    Slot(AbstractTexture texture, Identifier textureLocation, int x, int y, int width, int height)
    Creates an instance of a Slot record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    float
    getU(float offset)
     
    float
    getV(float offset)
     
    final int
    Returns a hash code value for this object.
    int
    Returns the value of the height record component.
    Returns the value of the texture record component.
    Returns the value of the textureLocation record component.
    final String
    Returns a string representation of this record class.
    int
    Returns the value of the width record component.
    int
    x()
    Returns the value of the x record component.
    int
    y()
    Returns the value of the y record component.

    Methods inherited from class Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface UvMapping

    wrap
  • Field Details

    • texture

      private final AbstractTexture texture
      The field for the texture record component.
    • textureLocation

      private final Identifier textureLocation
      The field for the textureLocation record component.
    • x

      private final int x
      The field for the x record component.
    • y

      private final int y
      The field for the y 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

    • Slot

      private Slot(AbstractTexture texture, Identifier textureLocation, int x, int y, int width, int height)
      Creates an instance of a Slot record class.
      Parameters:
      texture - the value for the texture record component
      textureLocation - the value for the textureLocation record component
      x - the value for the x record component
      y - the value for the y record component
      width - the value for the width record component
      height - the value for the height record component
  • Method Details

    • getU

      public float getU(float offset)
      Specified by:
      getU in interface UvMapping
    • getV

      public float getV(float offset)
      Specified by:
      getV in interface UvMapping
    • 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 o)
      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 the compare method from their corresponding wrapper classes.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • texture

      public AbstractTexture texture()
      Returns the value of the texture record component.
      Returns:
      the value of the texture record component
    • textureLocation

      public Identifier textureLocation()
      Returns the value of the textureLocation record component.
      Specified by:
      textureLocation in interface PalettedTextureManager.Handle
      Returns:
      the value of the textureLocation record component
    • x

      public int x()
      Returns the value of the x record component.
      Returns:
      the value of the x record component
    • y

      public int y()
      Returns the value of the y record component.
      Returns:
      the value of the y 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