This post originated from an RSS feed registered with Java Buzz
by Ram N.
Original Post: Java : Collection Framework : Hashtable (Values)
Feed Title: JAVA EE
Feed URL: http://ramj2ee.blogspot.com/feeds/posts/default?alt=rss
Feed Description: This blog has viedo tutorials and Sample codes related to below Technologies.
1.J2EE
2.Java
3.Spring
4.Hibernate
5.Database
6.Oracle
7.Mysql
8.Design Patterns
/* * Returns a Collection view of the values contained in this map. The * collection is backed by the map, so changes to the map are reflected * in the collection, and vice-versa. * * If the map is modified while an iteration over the collection is in * progress (except through the iterator's own remove operation), the * results of the iteration are undefined. The collection supports * element removal, which removes the corresponding mapping from the * map, via the Iterator.remove, Collection.remove, removeAll, retainAll * and clear operations. It does not support the add or addAll * operations. */ Collection<String> collection = hashtable.values();