Class Tuple3<T1,​T2,​T3>

  • Direct Known Subclasses:
    Triple

    public class Tuple3<T1,​T2,​T3>
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected T1 t1  
      protected T2 t2  
      protected T3 t3  
    • Constructor Summary

      Constructors 
      Constructor Description
      Tuple3​(T1 t1, T2 t2, T3 t3)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T1 getT1()  
      T2 getT2()  
      T3 getT3()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • t1

        protected final T1 t1
      • t2

        protected final T2 t2
      • t3

        protected final T3 t3
    • Constructor Detail

      • Tuple3

        public Tuple3​(T1 t1,
                      T2 t2,
                      T3 t3)
    • Method Detail

      • getT1

        public T1 getT1()
      • getT2

        public T2 getT2()
      • getT3

        public T3 getT3()