Class Tuple3<A,B,C>

java.lang.Object
org.reactfx.util.Tuple3<A,B,C>

public class Tuple3<A,B,C> extends Object
  • Field Details

    • _1

      public final A _1
    • _2

      public final B _2
    • _3

      public final C _3
  • Constructor Details

    • Tuple3

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

    • 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(Object other)
      Overrides:
      equals in class Object
    • hashCode

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

      public String toString()
      Overrides:
      toString in class Object