Class Tuples

java.lang.Object
org.reactfx.util.Tuples

public class Tuples extends Object
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static <A, B> Tuple2<A,B>
    t(A a, B b)
     
    static <A, B, C> Tuple3<A,B,C>
    t(A a, B b, C c)
     
    static <A, B, C, D>
    Tuple4<A,B,C,D>
    t(A a, B b, C c, D d)
     
    static <A, B, C, D, E>
    Tuple5<A,B,C,D,E>
    t(A a, B b, C c, D d, E e)
     
    static <A, B, C, D, E, F>
    Tuple6<A,B,C,D,E,F>
    t(A a, B b, C c, D d, E e, F f)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Tuples

      public Tuples()
  • Method Details

    • t

      public static <A, B> Tuple2<A,B> t(A a, B b)
    • t

      public static <A, B, C> Tuple3<A,B,C> t(A a, B b, C c)
    • t

      public static <A, B, C, D> Tuple4<A,B,C,D> t(A a, B b, C c, D d)
    • t

      public static <A, B, C, D, E> Tuple5<A,B,C,D,E> t(A a, B b, C c, D d, E e)
    • t

      public static <A, B, C, D, E, F> Tuple6<A,B,C,D,E,F> t(A a, B b, C c, D d, E e, F f)