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 boolean
add(K o)
Deprecated.boolean
addAll(Collection<? extends K> c)
Deprecated.void
clear()
Deprecated.boolean
contains(Object o)
Deprecated.boolean
containsAll(Collection<?> c)
Deprecated.boolean
isEmpty()
Deprecated.Iterator<K>
iterator()
Deprecated.boolean
remove(Object o)
Deprecated.boolean
removeAll(Collection<?> c)
Deprecated.boolean
retainAll(Collection<?> c)
Deprecated.int
size()
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:
containsAll
in interfaceCollection<K>
- Specified by:
containsAll
in 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.
-
-