Record Class TextHandler.MatchResult

java.lang.Object
java.lang.Record
net.minecraft.client.font.TextHandler.MatchResult
Record Components:
left -
right -
Enclosing class:
TextHandler

@Environment(CLIENT) public static record TextHandler.MatchResult(float left, float right) extends Record
Mappings:
Namespace Name
official egh$e
intermediary net/minecraft/class_5225$class_7623
named net/minecraft/client/font/TextHandler$MatchResult
official a
intermediary comp_955
named left
official b
intermediary comp_956
named right
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final float
    The field for the left record component.
    private final float
    The field for the right record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    MatchResult(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.
    float
    Returns the value of the left record component.
    float
    Returns the value of the right record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

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

    • left

      private final float left
      The field for the left record component.
  • Constructor Details

    • MatchResult

      public MatchResult(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.
    • left

      public float left()
      Returns the value of the left record component.
      Returns:
      the value of the left record component
    • right

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