Class Tuple11<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11>

  • All Implemented Interfaces:
    Tuple, java.lang.Comparable<Tuple11<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11>>

    public final class Tuple11<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11>
    extends java.lang.Object
    implements Tuple, java.lang.Comparable<Tuple11<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11>>
    A Tuple that has 11 values.
    Author:
    Andre Breves
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int compareTo​(Tuple11<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11> other)  
      int degree()
      Returns the value count of this Tuple.
      boolean equals​(java.lang.Object obj)  
      int hashCode()  
      static <T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11>
      Tuple11<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11>
      of​(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8, T9 v9, T10 v10, T11 v11)
      Returns a Tuple that has 11 values.
      T1 v1()
      Returns the 1st value of this Tuple.
      T10 v10()
      Returns the 10th value of this Tuple.
      T11 v11()
      Returns the 11th value of this Tuple.
      T2 v2()
      Returns the 2nd value of this Tuple.
      T3 v3()
      Returns the 3rd value of this Tuple.
      T4 v4()
      Returns the 4th value of this Tuple.
      T5 v5()
      Returns the 5th value of this Tuple.
      T6 v6()
      Returns the 6th value of this Tuple.
      T7 v7()
      Returns the 7th value of this Tuple.
      T8 v8()
      Returns the 8th value of this Tuple.
      T9 v9()
      Returns the 9th value of this Tuple.
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • of

        public static <T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11> Tuple11<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11> of​(T1 v1,
                                                                                                                                                                                                                                  T2 v2,
                                                                                                                                                                                                                                  T3 v3,
                                                                                                                                                                                                                                  T4 v4,
                                                                                                                                                                                                                                  T5 v5,
                                                                                                                                                                                                                                  T6 v6,
                                                                                                                                                                                                                                  T7 v7,
                                                                                                                                                                                                                                  T8 v8,
                                                                                                                                                                                                                                  T9 v9,
                                                                                                                                                                                                                                  T10 v10,
                                                                                                                                                                                                                                  T11 v11)
        Returns a Tuple that has 11 values.
      • v1

        public T1 v1()
        Returns the 1st value of this Tuple.
      • v2

        public T2 v2()
        Returns the 2nd value of this Tuple.
      • v3

        public T3 v3()
        Returns the 3rd value of this Tuple.
      • v4

        public T4 v4()
        Returns the 4th value of this Tuple.
      • v5

        public T5 v5()
        Returns the 5th value of this Tuple.
      • v6

        public T6 v6()
        Returns the 6th value of this Tuple.
      • v7

        public T7 v7()
        Returns the 7th value of this Tuple.
      • v8

        public T8 v8()
        Returns the 8th value of this Tuple.
      • v9

        public T9 v9()
        Returns the 9th value of this Tuple.
      • v10

        public T10 v10()
        Returns the 10th value of this Tuple.
      • v11

        public T11 v11()
        Returns the 11th value of this Tuple.
      • degree

        public int degree()
        Description copied from interface: Tuple
        Returns the value count of this Tuple.
        Specified by:
        degree in interface Tuple
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • compareTo

        public int compareTo​(Tuple11<T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11> other)
        Specified by:
        compareTo in interface java.lang.Comparable<T1>