|
||||||||||
| PREV CLASS (src) NEXT CLASS (src) | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.AbstractCollection
java.util.AbstractSet
org.jboss.util.collection.WeakSet
A Set implementation with weak elements. An entry in a WeakSet will automatically be removed when the element is no longer in ordinary use. More precisely, the presence of an given element will not prevent the element from being discarded by the garbage collector, that is, made finalizable, finalized, and then reclaimed.
| Field Summary | |
protected java.lang.ref.ReferenceQueue |
queue
The reference queue used to get object removal notifications. |
protected java.util.Set |
set
The Set which will be used for element storage. |
| Constructor Summary | |
WeakSet()
Construct a WeakSet based on a HashSet. |
|
WeakSet(java.util.Set set)
Construct a WeakSet. |
|
| Method Summary | |
boolean |
add(java.lang.Object obj)
Add an element to the set. |
void |
clear()
Removes all of the elements from this set. |
java.lang.Object |
clone()
Returns a shallow copy of this WeakSet instance: the elements themselves are not cloned. |
boolean |
contains(java.lang.Object obj)
Returns true if this set contains the specified element. |
boolean |
isEmpty()
Returns true if this set contains no elements. |
java.util.Iterator |
iterator()
Return an iteration over the elements in the set. |
protected void |
maintain()
Maintain the elements in the set. |
boolean |
remove(java.lang.Object obj)
Removes the given element from this set if it is present. |
int |
size()
Return the size of the set. |
| Methods inherited from class java.util.AbstractSet |
equals, hashCode, removeAll |
| Methods inherited from class java.util.AbstractCollection |
addAll, containsAll, retainAll, toArray, toArray, toString |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.Set |
addAll, containsAll, equals, hashCode, removeAll, retainAll, toArray, toArray |
| Field Detail |
protected final java.lang.ref.ReferenceQueue queue
protected final java.util.Set set
| Constructor Detail |
public WeakSet(java.util.Set set)
WeakObject (src) references.
set - The Set which will be used for element storage.
NullArgumentException (src) - Set is null.public WeakSet()
| Method Detail |
protected final void maintain()
public int size()
size in interface java.util.Setpublic java.util.Iterator iterator()
iterator in interface java.util.Setpublic boolean add(java.lang.Object obj)
add in interface java.util.Setobj - Element to add to the set.
public boolean isEmpty()
isEmpty in interface java.util.Setpublic boolean contains(java.lang.Object obj)
contains in interface java.util.Setobj - Element whose presence in this set is to be tested.
public boolean remove(java.lang.Object obj)
remove in interface java.util.Setobj - Object to be removed from this set, if present.
public void clear()
clear in interface java.util.Setpublic java.lang.Object clone()
|
||||||||||
| PREV CLASS (src) NEXT CLASS (src) | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||