| java.util.AbstractSet org.zkoss.util.IdentityHashSet
Constructor Summary | |
public | IdentityHashSet() Constructs a new, empty set; the backing IdentityHashMap
instance has default capacity (32). | public | IdentityHashSet(Collection c) Constructs a new set containing the elements in the specified
collection. | public | IdentityHashSet(int expectedMaxSize) Constructs a new, empty set with the specified expected maximum size. |
IdentityHashSet | public IdentityHashSet()(Code) | | Constructs a new, empty set; the backing IdentityHashMap
instance has default capacity (32).
|
IdentityHashSet | public IdentityHashSet(Collection c)(Code) | | Constructs a new set containing the elements in the specified
collection.
Parameters: c - the collection whose elements are to be placed into this set. throws: NullPointerException - if the specified collection is null. |
IdentityHashSet | public IdentityHashSet(int expectedMaxSize)(Code) | | Constructs a new, empty set with the specified expected maximum size.
Parameters: expectedMaxSize - the expected maximum size of the map. throws: IllegalArgumentException - if expectedMaxSize is negative |
clear | public void clear()(Code) | | |
isEmpty | public boolean isEmpty()(Code) | | |
|
|