org.jopendocument.util.cc
Class IdentityHashSet<E>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractSet<E>
org.jopendocument.util.cc.IdentityHashSet<E>
- Type Parameters:
E - the type of elements maintained by this set
- All Implemented Interfaces:
- Cloneable, Iterable<E>, Collection<E>, Set<E>, IdentitySet<E>
public final class IdentityHashSet<E>
- extends AbstractSet<E>
- implements IdentitySet<E>, Cloneable
This class implements the Set interface with a hash table, using reference-equality in
place of object-equality when comparing items. In other words, in an IdentityHashSet,
two keys k1 and k2 are considered equal if and only if (k1==k2). (In
normal Set implementations (like HashSet) two keys k1 and k2
are considered equal if and only if (k1==null ? k2==null : k1.equals(k2)).)
IdentityHashSet
public IdentityHashSet()
IdentityHashSet
public IdentityHashSet(int expectedMaxSize)
IdentityHashSet
public IdentityHashSet(Collection<? extends E> c)
add
public boolean add(E e)
- Specified by:
add in interface Collection<E>- Specified by:
add in interface Set<E>- Overrides:
add in class AbstractCollection<E>
addAll
public boolean addAll(Collection<? extends E> c)
- Specified by:
addAll in interface Collection<E>- Specified by:
addAll in interface Set<E>- Overrides:
addAll in class AbstractCollection<E>
clear
public void clear()
- Specified by:
clear in interface Collection<E>- Specified by:
clear in interface Set<E>- Overrides:
clear in class AbstractCollection<E>
size
public int size()
- Specified by:
size in interface Collection<E>- Specified by:
size in interface Set<E>- Specified by:
size in class AbstractCollection<E>
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty in interface Collection<E>- Specified by:
isEmpty in interface Set<E>- Overrides:
isEmpty in class AbstractCollection<E>
iterator
public Iterator<E> iterator()
- Specified by:
iterator in interface Iterable<E>- Specified by:
iterator in interface Collection<E>- Specified by:
iterator in interface Set<E>- Specified by:
iterator in class AbstractCollection<E>
contains
public boolean contains(Object o)
- Specified by:
contains in interface Collection<E>- Specified by:
contains in interface Set<E>- Overrides:
contains in class AbstractCollection<E>
containsAll
public boolean containsAll(Collection<?> c)
- Specified by:
containsAll in interface Collection<E>- Specified by:
containsAll in interface Set<E>- Overrides:
containsAll in class AbstractCollection<E>
remove
public boolean remove(Object o)
- Specified by:
remove in interface Collection<E>- Specified by:
remove in interface Set<E>- Overrides:
remove in class AbstractCollection<E>
removeAll
public boolean removeAll(Collection<?> c)
- Specified by:
removeAll in interface Collection<E>- Specified by:
removeAll in interface Set<E>- Overrides:
removeAll in class AbstractSet<E>
retainAll
public boolean retainAll(Collection<?> c)
- Specified by:
retainAll in interface Collection<E>- Specified by:
retainAll in interface Set<E>- Overrides:
retainAll in class AbstractCollection<E>
toArray
public Object[] toArray()
- Specified by:
toArray in interface Collection<E>- Specified by:
toArray in interface Set<E>- Overrides:
toArray in class AbstractCollection<E>
toArray
public <T> T[] toArray(T[] a)
- Specified by:
toArray in interface Collection<E>- Specified by:
toArray in interface Set<E>- Overrides:
toArray in class AbstractCollection<E>
clone
public Object clone()
- Returns a shallow copy of this HashSet instance: the elements themselves are not
cloned.
- Overrides:
clone in class Object
- Returns:
- a shallow copy of this set
Copyright © 2010 jOpenDocument All Rights Reserved.