E - public class ConcurrentHashSet<E> extends AbstractSet<E> implements Set<E>, Cloneable, Serializable
| Constructor and Description |
|---|
ConcurrentHashSet()
Constructs a new, empty set; the backing ConcurrentHashMap instance has default
initial capacity (16) and load factor (0.75).
|
ConcurrentHashSet(Collection<? extends E> c)
Constructs a new set containing the elements in the specified collection.
|
ConcurrentHashSet(int initialCapacity)
Constructs a new, empty set; the backing HashMap instance has the specified initial
capacity and default load factor, which is 0.75.
|
ConcurrentHashSet(int initialCapacity,
float loadFactor)
Constructs a new, empty set; the backing ConcurrentHashMap instance has the
specified initial capacity and the specified load factor.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(E o) |
void |
clear() |
Object |
clone() |
boolean |
contains(Object o) |
boolean |
isEmpty() |
Iterator<E> |
iterator() |
boolean |
remove(Object o) |
int |
size() |
equals, hashCode, removeAlladdAll, containsAll, retainAll, toArray, toArray, toStringpublic ConcurrentHashSet()
public ConcurrentHashSet(Collection<? extends E> c)
c - the collection whose elements are to be placed into this set.NullPointerException - if the specified collection is null.public ConcurrentHashSet(int initialCapacity,
float loadFactor)
initialCapacity - the initial capacity of the hash map.loadFactor - the load factor of the hash map.IllegalArgumentException - if the initial capacity is less than zero, or if the load factor is nonpositive.public ConcurrentHashSet(int initialCapacity)
initialCapacity - the initial capacity of the hash table.IllegalArgumentException - if the initial capacity is less than zero.public int size()
size in interface Collection<E>size in interface Set<E>size in class AbstractCollection<E>public boolean isEmpty()
isEmpty in interface Collection<E>isEmpty in interface Set<E>isEmpty in class AbstractCollection<E>public boolean contains(Object o)
contains in interface Collection<E>contains in interface Set<E>contains in class AbstractCollection<E>public boolean add(E o)
add in interface Collection<E>add in interface Set<E>add in class AbstractCollection<E>public boolean remove(Object o)
remove in interface Collection<E>remove in interface Set<E>remove in class AbstractCollection<E>public void clear()
clear in interface Collection<E>clear in interface Set<E>clear in class AbstractCollection<E>public Object clone() throws CloneNotSupportedException
clone in class ObjectCloneNotSupportedExceptionCopyright © 2006–2014 Apache Software Foundation. All rights reserved.