Package reactor.util.function
Class Tuple6<T1,T2,T3,T4,T5,T6>
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>
- 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 tuple
- All Implemented Interfaces:
Serializable,Iterable<Object>
- Direct Known Subclasses:
Tuple7
A tuple that holds six values
- Author:
- Jon Brisbin, Stephane Maldini
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleanget(int index) Get the object at the given index.getT6()Type-safe way to get the sixth object of thisTuples.inthashCode()Map the 1st part (T1) of thisTuple6into a different value and type, keeping the other parts.Map the 2nd part (T2) of thisTuple6into a different value and type, keeping the other parts.Map the 3rd part (T3) of thisTuple6into a different value and type, keeping the other parts.Map the 4th part (T4) of thisTuple6into a different value and type, keeping the other parts.Map the 5th part (T5) of thisTuple6into a different value and type, keeping the other parts.Map the 6th part (T6) of thisTuple6into 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
-
getT6
Type-safe way to get the sixth object of thisTuples.- Returns:
- The sixth object
-
mapT1
Map the 1st part (T1) of thisTuple6into a different value and type, keeping the other parts. -
mapT2
Map the 2nd part (T2) of thisTuple6into a different value and type, keeping the other parts. -
mapT3
Map the 3rd part (T3) of thisTuple6into a different value and type, keeping the other parts. -
mapT4
Map the 4th part (T4) of thisTuple6into a different value and type, keeping the other parts. -
mapT5
Map the 5th part (T5) of thisTuple6into a different value and type, keeping the other parts. -
mapT6
Map the 6th part (T6) of thisTuple6into 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.
-