Class FiveTuple<A,​B,​C,​D,​E>

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

    public final class FiveTuple<A,​B,​C,​D,​E>
    extends Object
    5-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
    • Constructor Detail

      • FiveTuple

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