Package net.minecraft.client
Record Class StringSplitter.Span
java.lang.Object
java.lang.Record
net.minecraft.client.StringSplitter.Span
- Enclosing class:
- StringSplitter
-
Field Summary
-
Constructor Summary
-
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
-
left
private final float leftThe field for theleft
record component. -
right
private final float rightThe field for theright
record component.
-
-
Constructor Details
-
Span
public Span(float left, float right) Creates an instance of aSpan
record class.- Parameters:
left
- the value for theleft
record componentright
- the value for theright
record component
-
-
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
-