Method containsAll(Collection> c)
Return type: boolean
Member of:
java.util.Collection
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
values.containsAll(confirmed.values()));
2
if ( mu.getCerts() != null && certs.containsAll( mu.getCerts() ) ) {
3
"empty Collection.", collection.containsAll(col));
4
assertTrue(set1a.containsAll(set1));
5
if (((Collection)a).containsAll((Collection)b)) {
6
assertTrue(m.values().containsAll(c1));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.