Class Triple<T1,​T2,​T3>

  • Type Parameters:
    T1 -
    T2 -
    T3 -

    public class Triple<T1,​T2,​T3>
    extends Object
    A triple of objects.
    • Constructor Detail

      • Triple

        public Triple​(T1 obj1,
                      T2 obj2,
                      T3 obj3)
    • Method Detail

      • getFirst

        public T1 getFirst()
      • getSecond

        public T2 getSecond()
      • getThird

        public T3 getThird()
      • hashCode

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

        public static <T1,​T2,​T3> Triple<T1,​T2,​T3> make​(T1 obj1,
                                                                               T2 obj2,
                                                                               T3 obj3)