Class Tuple3<A,​B,​C>


  • public class Tuple3<A,​B,​C>
    extends java.lang.Object
    • Field Detail

      • _1

        public final A _1
      • _2

        public final B _2
      • _3

        public final C _3
    • Constructor Detail

      • Tuple3

        Tuple3​(A a,
               B b,
               C c)
    • Method Detail

      • get1

        public A get1()
      • get2

        public B get2()
      • get3

        public C get3()
      • update1

        public Tuple3<A,​B,​C> update1​(A a)
      • update2

        public Tuple3<A,​B,​C> update2​(B b)
      • update3

        public Tuple3<A,​B,​C> update3​(C c)
      • map

        public <T> T map​(TriFunction<? super A,​? super B,​? super C,​? extends T> f)
      • test

        public boolean test​(TriPredicate<? super A,​? super B,​? super C> f)
      • exec

        public void exec​(TriConsumer<? super A,​? super B,​? super C> f)
      • equals

        public boolean equals​(java.lang.Object other)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object