Interface Quadruple<A,​B,​C,​D>

  • Type Parameters:
    A -
    B -
    C -
    D -
    All Known Subinterfaces:
    MutableQuadruple<A,​B,​C,​D>

    public interface Quadruple<A,​B,​C,​D>
    An immutable tuple of four values. Two instances are equal if all four values in the first instance are equal to their counterpart in the other instance.
    • Method Detail

      • of

        static <A,​B,​C,​D> Quadruple<A,​B,​C,​D> of​(A a,
                                                                                   B b,
                                                                                   C c,
                                                                                   D d)
      • getA

        A getA()
      • getB

        B getB()
      • getC

        C getC()
      • getD

        D getD()