java.util
static class: Collections.CheckedSet [javadoc |
source]
java.lang.Object
java.util.Collections.CheckedCollection<E>
java.util.Collections$CheckedSet
All Implemented Interfaces:
Set, Serializable, Collection
Direct Known Subclasses:
CheckedSortedSet
Method from java.util.Collections$CheckedSet Summary: |
---|
equals, hashCode |
Methods from java.util.Collections$CheckedCollection: |
---|
add, addAll, checkedCopyOf, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString, typeCheck |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from java.util.Collections$CheckedSet Detail: |
public boolean equals(Object o) {
return o == this || c.equals(o);
}
|
public int hashCode() {
return c.hashCode();
}
|