Package com.intellij.util.containers
Class ConcurrentHashSet<K>
- java.lang.Object
-
- com.intellij.util.containers.ConcurrentHashSet<K>
-
- Type Parameters:
K-
- All Implemented Interfaces:
Iterable<K>,Collection<K>,Set<K>
public class ConcurrentHashSet<K> extends Object implements Set<K>
Deprecated.
-
-
Constructor Summary
Constructors Constructor Description ConcurrentHashSet()Deprecated.ConcurrentHashSet(int initialCapacity)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanadd(K o)Deprecated.booleanaddAll(Collection<? extends K> c)Deprecated.voidclear()Deprecated.booleancontains(Object o)Deprecated.booleancontainsAll(Collection<?> c)Deprecated.booleanisEmpty()Deprecated.Iterator<K>iterator()Deprecated.booleanremove(Object o)Deprecated.booleanremoveAll(Collection<?> c)Deprecated.booleanretainAll(Collection<?> c)Deprecated.intsize()Deprecated.Object[]toArray()Deprecated.<T> T[]toArray(T[] a)Deprecated.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream
-
Methods inherited from interface java.util.Set
equals, hashCode, spliterator
-
-
-
-
Method Detail
-
size
public int size()
Deprecated.
-
isEmpty
public boolean isEmpty()
Deprecated.
-
contains
public boolean contains(Object o)
Deprecated.
-
toArray
public Object[] toArray()
Deprecated.
-
toArray
public <T> T[] toArray(T[] a)
Deprecated.
-
add
public boolean add(K o)
Deprecated.
-
remove
public boolean remove(Object o)
Deprecated.
-
containsAll
public boolean containsAll(Collection<?> c)
Deprecated.- Specified by:
containsAllin interfaceCollection<K>- Specified by:
containsAllin interfaceSet<K>
-
addAll
public boolean addAll(Collection<? extends K> c)
Deprecated.
-
retainAll
public boolean retainAll(Collection<?> c)
Deprecated.
-
removeAll
public boolean removeAll(Collection<?> c)
Deprecated.
-
-