java.lang.Object
java.lang.Record
org.spokbjorn.tuple.Heptad<T,U,V,W,X,Y,Z>
- Type Parameters:
T- the type of the value for thefirstparameterU- the type of the value for thesecondparameterV- the type of the value for thethirdparameterW- the type of the value for thefourthparameterX- the type of the value for thefifthparameterY- the type of the value for thesixthparameterZ- the type of the value for theseventhparameter
- All Implemented Interfaces:
Tuple
public record Heptad<T,U,V,W,X,Y,Z> (T first, U second, V third, W fourth, X fifth, Y sixth, Z seventh)
extends Record
implements Tuple
Represents a heptad of values.
There is no meaning to values in this class, it can be used for any purpose.
- Since:
- 1.0.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.fifth()Returns the value of thefifthrecord component.first()Returns the value of thefirstrecord component.fourth()Returns the value of thefourthrecord component.final inthashCode()Returns a hash code value for this object.second()Returns the value of thesecondrecord component.seventh()Returns the value of theseventhrecord component.sixth()Returns the value of thesixthrecord component.third()Returns the value of thethirdrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Heptad
Creates an instance of aHeptadrecord class.- Parameters:
first- the value for thefirstrecord componentsecond- the value for thesecondrecord componentthird- the value for thethirdrecord componentfourth- the value for thefourthrecord componentfifth- the value for thefifthrecord componentsixth- the value for thesixthrecord componentseventh- the value for theseventhrecord 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). -
first
Returns the value of thefirstrecord component.- Returns:
- the value of the
firstrecord component
-
second
Returns the value of thesecondrecord component.- Returns:
- the value of the
secondrecord component
-
third
Returns the value of thethirdrecord component.- Returns:
- the value of the
thirdrecord component
-
fourth
Returns the value of thefourthrecord component.- Returns:
- the value of the
fourthrecord component
-
fifth
Returns the value of thefifthrecord component.- Returns:
- the value of the
fifthrecord component
-
sixth
Returns the value of thesixthrecord component.- Returns:
- the value of the
sixthrecord component
-
seventh
Returns the value of theseventhrecord component.- Returns:
- the value of the
seventhrecord component
-