Package net.minecraft.client.font
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 SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.floatleft()Returns the value of theleftrecord component.floatright()Returns the value of therightrecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details
- 
Constructor Details- 
MatchResultpublic MatchResult(float float2, float float3) 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
leftpublic float left()Returns the value of theleftrecord component.- Returns:
- the value of the leftrecord component
 
- 
rightpublic float right()Returns the value of therightrecord component.- Returns:
- the value of the rightrecord component
 
 
-