Class Tuple3<T1,​T2,​T3>

  • Type Parameters:
    T1 - the type of the first element
    T2 - the type of the second element
    T3 - the type of the third element

    public final class Tuple3<T1,​T2,​T3>
    extends Object
    A tuple of three elements along the lines of Scala's Tuple.
    • Field Detail

      • value1

        public final T1 value1
      • value2

        public final T2 value2
      • value3

        public final T3 value3
    • Constructor Detail

      • Tuple3

        public Tuple3​(T1 value1,
                      T2 value2,
                      T3 value3)
        Constructs a new tuple.
        Parameters:
        value1 - the first element
        value2 - the second element
        value3 - the third element