Interface Triple<A,​B,​C>

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

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

      • of

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

        A getA()
      • getB

        B getB()
      • getC

        C getC()