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