public class ConcurrentHashSet<E> extends AbstractSet<E> implements Serializable
Constructor and Description |
---|
ConcurrentHashSet() |
ConcurrentHashSet(Collection<? extends E> s) |
ConcurrentHashSet(int initialCapacity) |
ConcurrentHashSet(Map<? extends E,?> m) |
Modifier and Type | Method and Description |
---|---|
boolean |
add(E e) |
void |
clear() |
boolean |
contains(Object o) |
static <E> ConcurrentHashSet<E> |
create() |
static <E> ConcurrentHashSet<E> |
create(Collection<? extends E> s) |
static <E> ConcurrentHashSet<E> |
create(Map<? extends E,?> m) |
void |
forEach(Consumer<? super E> action) |
ConcurrentMap<E,Null> |
getStore() |
boolean |
isEmpty() |
Iterator<E> |
iterator() |
boolean |
remove(Object o) |
int |
size() |
String |
toString() |
equals, hashCode, removeAll
addAll, containsAll, retainAll, toArray, toArray
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
addAll, containsAll, retainAll, spliterator, toArray, toArray
parallelStream, removeIf, stream
public ConcurrentHashSet()
public ConcurrentHashSet(int initialCapacity)
public ConcurrentHashSet(Collection<? extends E> s)
public static <E> ConcurrentHashSet<E> create()
public static <E> ConcurrentHashSet<E> create(Map<? extends E,?> m)
public static <E> ConcurrentHashSet<E> create(Collection<? extends E> s)
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 e)
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 ConcurrentMap<E,Null> getStore()
public String toString()
toString
in class AbstractCollection<E>
Copyright © 2024. All rights reserved.