Class SixTuple<A,​B,​C,​D,​E,​F>

  • Type Parameters:
    A - The first type.
    B - The second type.
    C - The third type.
    D - The fourth type.
    E - The fifth type.
    F - The sixth type.

    public final class SixTuple<A,​B,​C,​D,​E,​F>
    extends Object
    6-tuple.
    • Field Detail

      • a

        public final A a
      • b

        public final B b
      • c

        public final C c
      • d

        public final D d
      • e

        public final E e
      • f

        public final F f
    • Constructor Detail

      • SixTuple

        SixTuple​(A a,
                 B b,
                 C c,
                 D d,
                 E e,
                 F f)
        Constructs a Tuple with six items.
        Parameters:
        a - The first item.
        b - The second item.
        c - The third item.
        d - The fourth item.
        e - The fifth item.
        f - The sixth item.