Package net.minecraft.client.font
Record Class TextHandler.class_7623
java.lang.Object
java.lang.Record
net.minecraft.client.font.TextHandler.class_7623
- Record Components:
left
-right
-
- Enclosing class:
TextHandler
@Environment(CLIENT)
public static record TextHandler.class_7623(float left, float right)
extends Record
- Mappings:
Namespace Name official egc$e
intermediary net/minecraft/class_5225$class_7623
named net/minecraft/client/font/TextHandler$class_7623
official a
intermediary comp_955
named left
official b
intermediary comp_956
named right
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.float
left()
Returns the value of theleft
record component.float
right()
Returns the value of theright
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
class_7623
public class_7623(float float2, float float3)
-
-
Method Details
-
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. -
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. -
equals
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 '=='. -
left
public float left()Returns the value of theleft
record component.- Returns:
- the value of the
left
record component
-
right
public float right()Returns the value of theright
record component.- Returns:
- the value of the
right
record component
-