Class Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>

java.lang.Object
org.apache.storm.streams.tuple.Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10>
Type Parameters:
T1 - the type of the first element
T2 - the type of the second element
T3 - the type of the third element
T4 - the type of the fourth element
T5 - the type of the fifth element
T6 - the type of the sixth element
T7 - the type of the seventh element
T8 - the type of the eighth element
T9 - the type of the ninth element
T10 - the type of the tenth element

public class Tuple10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10> extends Object
A tuple of ten elements along the lines of Scala's Tuple.
  • Field Details

    • value1

      public final T1 value1
    • value2

      public final T2 value2
    • value3

      public final T3 value3
    • value4

      public final T4 value4
    • value5

      public final T5 value5
    • value6

      public final T6 value6
    • value7

      public final T7 value7
    • value8

      public final T8 value8
    • value9

      public final T9 value9
    • value10

      public final T10 value10
  • Constructor Details

    • Tuple10

      public Tuple10(T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6, T7 value7, T8 value8, T9 value9, T10 value10)
      Constructs a new tuple.
      Parameters:
      value1 - the first element
      value2 - the second element
      value3 - the third element
      value4 - the fourth element
      value5 - the fifth element
      value6 - the sixth element
      value7 - the seventh element
      value8 - the eighth element
      value9 - the ninth element
      value10 - the tenth element
  • Method Details