Class Triple<A,​B,​C>


  • public class Triple<A,​B,​C>
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      A a  
      B b  
      C c  
    • Constructor Summary

      Constructors 
      Constructor Description
      Triple​(A a, B b, C c)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • a

        @Nullable
        public final A a
      • b

        @Nullable
        public final B b
      • c

        @Nullable
        public final C c
    • Constructor Detail

      • Triple

        public Triple​(@Nullable
                      A a,
                      @Nullable
                      B b,
                      @Nullable
                      C c)
    • Method Detail

      • toString

        @NonNull
        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object