Package dev.piglin.piglinworldapi.util
Record Class Triple<L,M,R>
java.lang.Object
java.lang.Record
dev.piglin.piglinworldapi.util.Triple<L,M,R>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanIndicates whether some other object is "equal to" this one.inthashCode()Returns a hash code value for this object.left()Returns the value of theleftrecord component.middle()Returns the value of themiddlerecord component.right()Returns the value of therightrecord component.toString()Returns a string representation of this record class.
-
Constructor Details
-
Triple
Creates an instance of aTriplerecord class.- Parameters:
left- the value for theleftrecord componentmiddle- the value for themiddlerecord componentright- the value for therightrecord 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 withObjects::equals(Object,Object). -
left
Returns the value of theleftrecord component.- Returns:
- the value of the
leftrecord component
-
middle
Returns the value of themiddlerecord component.- Returns:
- the value of the
middlerecord component
-
right
Returns the value of therightrecord component.- Returns:
- the value of the
rightrecord component
-