Class Tuple<A,​B>


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

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

      Constructors 
      Constructor Description
      Tuple​(A a, B b)  
    • 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
    • Constructor Detail

      • Tuple

        public Tuple​(@Nullable
                     A a,
                     @Nullable
                     B b)
    • Method Detail

      • toString

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