Class Tuple<V1,​V2>


  • public class Tuple<V1,​V2>
    extends java.lang.Object
    Holds 2 values, useful when we have a map with a key, but more than 1 value and we don't want to create a separate holder object for the values, and don't want to pass the values as a list or array.
    Author:
    Bela Ban
    • Constructor Summary

      Constructors 
      Constructor Description
      Tuple​(V1 val1, V2 val2)  
    • Constructor Detail

      • Tuple

        public Tuple​(V1 val1,
                     V2 val2)
    • Method Detail

      • getVal1

        public V1 getVal1()
      • getVal2

        public V2 getVal2()
      • toString

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