java.lang.Object | |
↳ | com.pnfsoftware.jeb.util.collect.IdentityHashSet<E> |
The set
version of an IdentityHashMap. Concurrency friendly.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
IdentityHashSet() | |||||||||||
IdentityHashSet(int expectedMaxSize) | |||||||||||
IdentityHashSet(Collection<? extends E> c) |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
boolean | add(E e) | ||||||||||
boolean | addAll(Collection<? extends E> c) | ||||||||||
void | clear() | ||||||||||
boolean | contains(Object o) | ||||||||||
boolean | containsAll(Collection<?> c) | ||||||||||
boolean | equals(Object o) | ||||||||||
int | hashCode() | ||||||||||
boolean | isEmpty() | ||||||||||
Iterator<E> | iterator() | ||||||||||
boolean | remove(Object o) | ||||||||||
boolean | removeAll(Collection<?> c) | ||||||||||
boolean |
retainAll(Collection<?> c)
Semantics is changed.
| ||||||||||
int | size() | ||||||||||
<T> T[] | toArray(T[] a) | ||||||||||
Object[] | toArray() | ||||||||||
String | toString() |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
java.lang.Iterable
| |||||||||||
From interface
java.util.Collection
| |||||||||||
From interface
java.util.Set
|
Semantics is changed.