Class ThreeTuple<A,​B,​C>

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

    public final class ThreeTuple<A,​B,​C>
    extends Object
    3-tuple.
    • Field Detail

      • a

        public final A a
      • b

        public final B b
      • c

        public final C c
    • Constructor Detail

      • ThreeTuple

        ThreeTuple​(A a,
                   B b,
                   C c)
        Constructs a Tuple with three items.
        Parameters:
        a - The first item.
        b - The second item.
        c - The third item.