Advertisement
Guest User

Pair

a guest
Oct 1st, 2014
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. package dailyprogrammer.medium.averagespeedcameras;
  2.  
  3. public class Pair<K, V> {
  4.  
  5.     Pair(K key, V value) {
  6.         this.key   = key;
  7.         this.value = value;
  8.     }
  9.  
  10.     public K key;
  11.  
  12.     public V value;
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement