Package reactor.util.function
Class Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>
java.lang.Object
reactor.util.function.Tuple2<T1,T2>
reactor.util.function.Tuple3<T1,T2,T3>
reactor.util.function.Tuple4<T1,T2,T3,T4>
reactor.util.function.Tuple5<T1,T2,T3,T4,T5>
reactor.util.function.Tuple6<T1,T2,T3,T4,T5,T6>
reactor.util.function.Tuple7<T1,T2,T3,T4,T5,T6,T7>
reactor.util.function.Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>
- Type Parameters:
T1- The type of the first value held by this tupleT2- The type of the second value held by this tupleT3- The type of the third value held by this tupleT4- The type of the fourth value held by this tupleT5- The type of the fifth value held by this tupleT6- The type of the sixth value held by this tupleT7- The type of the seventh value held by this tupleT8- The type of the eighth value held by this tuple
- All Implemented Interfaces:
Serializable,Iterable<Object>
A tuple that holds eight values
- Author:
- Jon Brisbin, Stephane Maldini
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleanget(int index) Get the object at the given index.getT8()Type-safe way to get the eighth object of thisTuples.inthashCode()Map the 1st part (T1) of thisTuple8into a different value and type, keeping the other parts.Map the 2nd part (T2) of thisTuple8into a different value and type, keeping the other parts.Map the 3rd part (T3) of thisTuple8into a different value and type, keeping the other parts.Map the 4th part (T4) of thisTuple8into a different value and type, keeping the other parts.Map the 5th part (T5) of thisTuple8into a different value and type, keeping the other parts.Map the 6th part (T6) of thisTuple8into a different value and type, keeping the other parts.Map the 7th part (T7) of thisTuple8into a different value and type, keeping the other parts.Map the 8th part (t8) of thisTuple8into a different value and type, keeping the other parts.intsize()Return the number of elements in this Tuples.Object[]toArray()Turn thisTupleinto a plainObject[].Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
getT8
Type-safe way to get the eighth object of thisTuples.- Returns:
- The eighth object
-
mapT1
Map the 1st part (T1) of thisTuple8into a different value and type, keeping the other parts. -
mapT2
Map the 2nd part (T2) of thisTuple8into a different value and type, keeping the other parts. -
mapT3
Map the 3rd part (T3) of thisTuple8into a different value and type, keeping the other parts. -
mapT4
Map the 4th part (T4) of thisTuple8into a different value and type, keeping the other parts. -
mapT5
Map the 5th part (T5) of thisTuple8into a different value and type, keeping the other parts. -
mapT6
Map the 6th part (T6) of thisTuple8into a different value and type, keeping the other parts. -
mapT7
Map the 7th part (T7) of thisTuple8into a different value and type, keeping the other parts. -
mapT8
Map the 8th part (t8) of thisTuple8into a different value and type, keeping the other parts. -
get
Description copied from class:Tuple2Get the object at the given index. -
toArray
Description copied from class:Tuple2Turn thisTupleinto a plainObject[]. The array isn't tied to this Tuple but is a copy. -
equals
-
hashCode
public int hashCode() -
size
public int size()Description copied from class:Tuple2Return the number of elements in this Tuples.
-