Record Class TrueTypeFontLoader.Shift

java.lang.Object
java.lang.Record
net.minecraft.client.font.TrueTypeFontLoader.Shift
Record Components:
x -
y -
Enclosing class:
TrueTypeFontLoader

@Environment(CLIENT) public static record TrueTypeFontLoader.Shift(float x, float y) extends Record
Mappings:
Namespace Name
named net/minecraft/client/font/TrueTypeFontLoader$Shift
intermediary net/minecraft/class_8557$class_8558
official flr$a
named x
intermediary comp_1529
official c
named y
intermediary comp_1530
official d
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final com.mojang.serialization.Codec<TrueTypeFontLoader.Shift>
     
     
    private final float
    The field for the x record component.
    private final float
    The field for the y record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Shift(float float2, float float3)
     
  • 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.
    final String
    Returns a string representation of this record class.
    float
    x()
    Returns the value of the x record component.
    float
    y()
    Returns the value of the y record component.

    Methods inherited from class java.lang.Object

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

    • x

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

      private final float y
      The field for the y record component.
    • NONE

      public static final TrueTypeFontLoader.Shift NONE
      Mappings:
      Namespace Name Mixin selector
      named NONE Lnet/minecraft/client/font/TrueTypeFontLoader$Shift;NONE:Lnet/minecraft/client/font/TrueTypeFontLoader$Shift;
      intermediary field_44806 Lnet/minecraft/class_8557$class_8558;field_44806:Lnet/minecraft/class_8557$class_8558;
      official a Lflr$a;a:Lflr$a;
    • CODEC

      public static final com.mojang.serialization.Codec<TrueTypeFontLoader.Shift> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/client/font/TrueTypeFontLoader$Shift;CODEC:Lcom/mojang/serialization/Codec;
      intermediary field_44807 Lnet/minecraft/class_8557$class_8558;field_44807:Lcom/mojang/serialization/Codec;
      official b Lflr$a;b:Lcom/mojang/serialization/Codec;
  • Constructor Details

    • Shift

      public Shift(float float2, float float3)
  • 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. All components in this record class 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.
    • x

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

      public float y()
      Returns the value of the y record component.
      Returns:
      the value of the y record component