Class FourTuple<A,​B,​C,​D>

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

    public final class FourTuple<A,​B,​C,​D>
    extends Object
    4-tuple.
    • Field Detail

      • a

        public final A a
      • b

        public final B b
      • c

        public final C c
      • d

        public final D d
    • Constructor Detail

      • FourTuple

        FourTuple​(A a,
                  B b,
                  C c,
                  D d)
        Constructs a Tuple with four items.
        Parameters:
        a - The first item.
        b - The second item.
        c - The third item.
        d - The fourth item.