@ThreadSafe public class CyclicThreadSafeCollection<E> extends Object implements Collection<E>
Constructor and Description |
---|
CyclicThreadSafeCollection(int capacity) |
Modifier and Type | Method and Description |
---|---|
boolean |
add(E e) |
boolean |
addAll(Collection<? extends E> c)
Add several elements at once.
|
int |
capacity()
Maximal collection capacity.
|
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
boolean |
isEmpty() |
Iterator<E> |
iterator()
Create thread-safe iterator for collection snapshot.
|
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
int |
size()
Number of contained elements, never more than capacity.
|
E[] |
toArray() |
<T> T[] |
toArray(T[] ret) |
List<E> |
toList()
Get elements in separate collection.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
equals, hashCode, parallelStream, removeIf, spliterator, stream
public boolean add(E e)
add
in interface Collection<E>
public boolean addAll(@Nonnull Collection<? extends E> c)
addAll
in interface Collection<E>
public void clear()
clear
in interface Collection<E>
@Nonnull public Iterator<E> iterator()
@Nonnegative public int size()
size
in interface Collection<E>
@Nonnegative public int capacity()
public boolean isEmpty()
isEmpty
in interface Collection<E>
public boolean contains(Object o)
contains
in interface Collection<E>
public boolean containsAll(@Nonnull Collection<?> c)
containsAll
in interface Collection<E>
@Nonnull public E[] toArray()
toArray
in interface Collection<E>
@Nonnull public <T> T[] toArray(@Nonnull T[] ret)
toArray
in interface Collection<E>
public boolean remove(Object o)
remove
in interface Collection<E>
public boolean removeAll(@Nonnull Collection<?> c)
removeAll
in interface Collection<E>
public boolean retainAll(@Nonnull Collection<?> c)
retainAll
in interface Collection<E>
Copyright © 2016–2021. All rights reserved.