Package org.hawaiiframework.util.tuple
Class Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>
- java.lang.Object
-
- org.hawaiiframework.util.tuple.Tuple1<T1>
-
- org.hawaiiframework.util.tuple.Tuple2<T1,T2>
-
- org.hawaiiframework.util.tuple.Tuple3<T1,T2,T3>
-
- org.hawaiiframework.util.tuple.Tuple4<T1,T2,T3,T4>
-
- org.hawaiiframework.util.tuple.Tuple5<T1,T2,T3,T4,T5>
-
- org.hawaiiframework.util.tuple.Tuple6<T1,T2,T3,T4,T5,T6>
-
- org.hawaiiframework.util.tuple.Tuple7<T1,T2,T3,T4,T5,T6,T7>
-
- org.hawaiiframework.util.tuple.Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>
-
- org.hawaiiframework.util.tuple.Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>
-
- Type Parameters:
T1
- the type of the 1st elementT2
- the type of the 2nd elementT3
- the type of the 3rd elementT4
- the type of the 4th elementT5
- the type of the 5th elementT6
- the type of the 6th elementT7
- the type of the 7th elementT8
- the type of the 8th elementT9
- the type of the 9th element
- All Implemented Interfaces:
Serializable
,Tuple
- Direct Known Subclasses:
Tuple10
public class Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9> extends Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>
ATuple
of 9 elements.- Since:
- 2.0.0
- Author:
- Marcel Overdijk
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
T9
getElement9()
Returns the 9th element of this tuple.int
hashCode()
void
setElement9(T9 element9)
Sets the 9th element of this tuple.int
size()
Returns the number of elements of this tuple.-
Methods inherited from class org.hawaiiframework.util.tuple.Tuple8
getElement8, setElement8
-
Methods inherited from class org.hawaiiframework.util.tuple.Tuple7
getElement7, setElement7
-
Methods inherited from class org.hawaiiframework.util.tuple.Tuple6
getElement6, setElement6
-
Methods inherited from class org.hawaiiframework.util.tuple.Tuple5
getElement5, setElement5
-
Methods inherited from class org.hawaiiframework.util.tuple.Tuple4
getElement4, setElement4
-
Methods inherited from class org.hawaiiframework.util.tuple.Tuple3
getElement3, setElement3
-
Methods inherited from class org.hawaiiframework.util.tuple.Tuple2
getElement2, setElement2
-
Methods inherited from class org.hawaiiframework.util.tuple.Tuple1
getElement1, setElement1
-
-
-
-
Method Detail
-
getElement9
public T9 getElement9()
Returns the 9th element of this tuple.- Returns:
- the 9th element of this tuple
-
setElement9
public void setElement9(T9 element9)
Sets the 9th element of this tuple.
-
size
public int size()
Description copied from interface:Tuple
Returns the number of elements of this tuple.
-
equals
public boolean equals(Object o)
-
-