Package org.incendo.cloud.type.tuple
Class Quartet<U,V,W,X>
java.lang.Object
org.incendo.cloud.type.tuple.Quartet<U,V,W,X>
- Type Parameters:
U- First typeV- Second typeW- Third typeX- Fourth type
- All Implemented Interfaces:
Tuple
Immutable generic 5-tuple
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanfirst()Get the first valuefourth()Get the fourth valuefinal inthashCode()Create a new 4-tuplesecond()Get the second valuefinal intsize()Returns the tuple size.third()Get the third valuetoArray()Turns the tuple into a type erased array.final StringtoString()
-
Constructor Details
-
Quartet
-
-
Method Details
-
of
public static <U,V, @NonNull Quartet<@NonNull U,W, X> @NonNull V, of@NonNull W, @NonNull X> (@NonNull U first, @NonNull V second, @NonNull W third, @NonNull X fourth) Create a new 4-tuple- Type Parameters:
U- First typeV- Second typeW- Third typeX- Fourth type- Parameters:
first- First valuesecond- Second valuethird- Third valuefourth- Fourth value- Returns:
- Created quartet
-
first
Get the first value- Returns:
- First value
-
second
Get the second value- Returns:
- Second value
-
third
Get the third value- Returns:
- Third value
-
fourth
Get the fourth value- Returns:
- Fourth value
-
equals
-
hashCode
public final int hashCode() -
toString
-
size
public final int size()Description copied from interface:TupleReturns the tuple size. -
toArray
Description copied from interface:TupleTurns the tuple into a type erased array.
-