Package org.apache.storm.streams.tuple
Class Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>
- java.lang.Object
-
- org.apache.storm.streams.tuple.Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9>
-
- Type Parameters:
T1
- the type of the first elementT2
- the type of the second elementT3
- the type of the third elementT4
- the type of the fourth elementT5
- the type of the fifth elementT6
- the type of the sixth elementT7
- the type of the seventh elementT8
- the type of the eighth elementT9
- the type of the ninth element
public class Tuple9<T1,T2,T3,T4,T5,T6,T7,T8,T9> extends Object
A tuple of nine elements along the lines of Scala's Tuple.
-
-
Constructor Detail
-
Tuple9
public Tuple9(T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6, T7 value7, T8 value8, T9 value9)
Constructs a new tuple.- Parameters:
value1
- the first elementvalue2
- the second elementvalue3
- the third elementvalue4
- the fourth elementvalue5
- the fifth elementvalue6
- the sixth elementvalue7
- the seventh elementvalue8
- the eighth elementvalue9
- the ninth element
-
-