Tuesday 15 April 2014

Map.Entry interface

The entrySet( ) method declared by the Map interface returns a Set containing the map entries. Each of these set elements is a Map.Entry object.

interface Entry<K,V> {
   K getKey();
   V getValue();
   V setValue(V value);
   boolean equals(Object o);
   int hashCode();
}




Prevoius                                                 Next                                                 Home

No comments:

Post a Comment