Class GridConcurrentHashSet<E>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractSet<E>
-
- org.apache.ignite.internal.client.util.GridConcurrentHashSet<E>
-
- All Implemented Interfaces:
Iterable<E>,Collection<E>,Set<E>
public class GridConcurrentHashSet<E> extends AbstractSet<E>
Wrapper around concurrent map.
-
-
Constructor Summary
Constructors Constructor Description GridConcurrentHashSet()Creates new set based onConcurrentHashMap.GridConcurrentHashSet(ConcurrentMap<E,?> map)Creates new set based on the given map.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(E e)voidclear()booleancontains(Object o)booleanisEmpty()Iterator<E>iterator()protected <T extends Map<E,Object>>
Tmap()Gets wrapped map.booleanremove(Object o)intsize()Object[]toArray()<T> T[]toArray(T[] a)StringtoString()-
Methods inherited from class java.util.AbstractSet
equals, hashCode, removeAll
-
Methods inherited from class java.util.AbstractCollection
addAll, containsAll, retainAll
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.Set
addAll, containsAll, retainAll, spliterator
-
-
-
-
Field Detail
-
VAL
protected static final Object VAL
Dummy value.
-
map
protected ConcurrentMap<E,Object> map
Base map.
-
-
Constructor Detail
-
GridConcurrentHashSet
public GridConcurrentHashSet()
Creates new set based onConcurrentHashMap.
-
GridConcurrentHashSet
public GridConcurrentHashSet(ConcurrentMap<E,?> map)
Creates new set based on the given map.- Parameters:
map- Map to be used for set implementation.
-
-
Method Detail
-
add
public boolean add(E e)
- Specified by:
addin interfaceCollection<E>- Specified by:
addin interfaceSet<E>- Overrides:
addin classAbstractCollection<E>
-
size
public int size()
- Specified by:
sizein interfaceCollection<E>- Specified by:
sizein interfaceSet<E>- Specified by:
sizein classAbstractCollection<E>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfaceCollection<E>- Specified by:
isEmptyin interfaceSet<E>- Overrides:
isEmptyin classAbstractCollection<E>
-
contains
public boolean contains(Object o)
- Specified by:
containsin interfaceCollection<E>- Specified by:
containsin interfaceSet<E>- Overrides:
containsin classAbstractCollection<E>
-
toArray
public Object[] toArray()
- Specified by:
toArrayin interfaceCollection<E>- Specified by:
toArrayin interfaceSet<E>- Overrides:
toArrayin classAbstractCollection<E>
-
toArray
public <T> T[] toArray(T[] a)
- Specified by:
toArrayin interfaceCollection<E>- Specified by:
toArrayin interfaceSet<E>- Overrides:
toArrayin classAbstractCollection<E>
-
remove
public boolean remove(Object o)
- Specified by:
removein interfaceCollection<E>- Specified by:
removein interfaceSet<E>- Overrides:
removein classAbstractCollection<E>
-
clear
public void clear()
- Specified by:
clearin interfaceCollection<E>- Specified by:
clearin interfaceSet<E>- Overrides:
clearin classAbstractCollection<E>
-
toString
public String toString()
- Overrides:
toStringin classAbstractCollection<E>
-
-