org.apache.wicket.util.collections
Class ConcurrentHashSet<E>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractSet<E>
org.apache.wicket.util.collections.ConcurrentHashSet<E>
- Type Parameters:
E -
- All Implemented Interfaces:
- Serializable, Cloneable, Iterable<E>, Collection<E>, Set<E>
public class ConcurrentHashSet<E>
- extends AbstractSet<E>
- implements Set<E>, Cloneable, Serializable
This class implements the Set interface, backed by a ConcurrentHashMap instance.
- Author:
- Matt Tucker
- See Also:
- Serialized Form
|
Constructor Summary |
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. |
ConcurrentHashSet
public ConcurrentHashSet()
- Constructs a new, empty set; the backing ConcurrentHashMap instance has default
initial capacity (16) and load factor (0.75).
ConcurrentHashSet
public ConcurrentHashSet(Collection<? extends E> c)
- Constructs a new set containing the elements in the specified collection. The
ConcurrentHashMap is created with default load factor (0.75) and an initial capacity
sufficient to contain 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.
ConcurrentHashSet
public ConcurrentHashSet(int initialCapacity,
float loadFactor)
- Constructs a new, empty set; the backing ConcurrentHashMap instance has the
specified initial capacity and the specified load factor.
- Parameters:
initialCapacity - the initial capacity of the hash map.loadFactor - the load factor of the hash map.
- Throws:
IllegalArgumentException - if the initial capacity is less than zero, or if the load factor is nonpositive.
ConcurrentHashSet
public 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.
- Parameters:
initialCapacity - the initial capacity of the hash table.
- Throws:
IllegalArgumentException - if the initial capacity is less than zero.
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>
- See Also:
AbstractCollection.iterator()
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>
- See Also:
AbstractCollection.size()
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty in interface Collection<E>- Specified by:
isEmpty in interface Set<E>- Overrides:
isEmpty in class AbstractCollection<E>
- See Also:
AbstractCollection.isEmpty()
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>
- See Also:
AbstractCollection.contains(java.lang.Object)
add
public boolean add(E o)
- Specified by:
add in interface Collection<E>- Specified by:
add in interface Set<E>- Overrides:
add in class AbstractCollection<E>
- See Also:
AbstractCollection.add(java.lang.Object)
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>
- See Also:
AbstractCollection.remove(java.lang.Object)
clear
public void clear()
- Specified by:
clear in interface Collection<E>- Specified by:
clear in interface Set<E>- Overrides:
clear in class AbstractCollection<E>
- See Also:
AbstractCollection.clear()
clone
public Object clone()
throws CloneNotSupportedException
- Overrides:
clone in class Object
- Throws:
CloneNotSupportedException- See Also:
Object.clone()
Copyright © 2004-2011 Apache Software Foundation. All Rights Reserved.