Record Class Triple<E,F,G>  
java.lang.Object
java.lang.Record
dk.jonaslindstrom.ruffini.common.util.Triple<E,F,G>  
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.first()Returns the value of thefirstrecord component.getFirst()getThird()final inthashCode()Returns a hash code value for this object.second()Returns the value of thesecondrecord component.third()Returns the value of thethirdrecord component.toString()Returns a string representation of this record class.
- 
Constructor Details- 
TripleCreates an instance of aTriplerecord class.- Parameters:
- first- the value for the- firstrecord component
- second- the value for the- secondrecord component
- third- the value for the- thirdrecord component
 
 
- 
- 
Method Details- 
getFirst
- 
getSecond
- 
getThird
- 
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 withObjects::equals(Object,Object).
- 
firstReturns the value of thefirstrecord component.- Returns:
- the value of the firstrecord component
 
- 
secondReturns the value of thesecondrecord component.- Returns:
- the value of the secondrecord component
 
- 
thirdReturns the value of thethirdrecord component.- Returns:
- the value of the thirdrecord component
 
 
-