Method values()
Return type:
java.util.Collection
<Collection<V>>
Member of:
java.util.HashMap
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
this(hm.values());
2
return viewList.values ().iterator ();
3
return new ArrayList(stats.values());
4
return map.values();
5
return new HashSet(categories.values());
6
return str2PrimitiveClass.values().iterator();
7
return (String[]) labels.values().toArray(new String[labels.size()]);
8
return (Scheduler[]) schedulers.values().toArray(
9
return java.util.Collections.enumeration(this.hmCatalogs.values());
10
return this.childrenMap.values();
11
return _columnMap.values().iterator();
12
(CallGraph[]) children.values().toArray(new CallGraph[0]);
13
return cacheMap.values().iterator();
14
Collection values = _map.values();
15
Collection configSet = installConfigMap.values();
16
for (Iterator it = documentFonts.values().iterator(); it.hasNext();) {
17
return (Cookie []) cookies.values().toArray(cookieArray);
18
Iterator values = clusters.values().iterator();
19
return Collections.unmodifiableCollection(zipCodeMap.values());
20
java.util.Iterator i = tableRows.values().iterator();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.