E - the type parameterpublic class CircularQueue<E> extends Object implements Collection<E>
| Modifier and Type | Field and Description |
|---|---|
protected int |
capacity
The Capacity.
|
protected cz.auderis.tools.collection.CircularQueue.QueueEntry<E>[] |
entries
The Entries.
|
protected int |
size
The Size.
|
protected int |
tailIndex
Where the last entry was written; when the queue is empty, its value is -1
|
protected long |
version
Fast-fail modification detection in iterators
|
| Constructor and Description |
|---|
CircularQueue(int maxSize)
Instantiates a new Circular queue.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(E e) |
boolean |
addAll(Collection<? extends E> c) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
ReadWriteLock |
getLock()
Gets lock.
|
boolean |
isEmpty() |
Iterator<E> |
iterator() |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
int |
size() |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitequals, hashCode, parallelStream, removeIf, spliterator, streamprotected final int capacity
protected final cz.auderis.tools.collection.CircularQueue.QueueEntry<E>[] entries
protected int size
protected int tailIndex
protected volatile long version
public CircularQueue(int maxSize)
maxSize - the max sizepublic ReadWriteLock getLock()
public int size()
size in interface Collection<E>public boolean isEmpty()
isEmpty in interface Collection<E>public void clear()
clear in interface Collection<E>public boolean add(E e)
add in interface Collection<E>public boolean addAll(Collection<? extends E> c)
addAll in interface Collection<E>public boolean contains(Object o)
contains in interface Collection<E>public boolean containsAll(Collection<?> c)
containsAll in interface Collection<E>public Object[] toArray()
toArray in interface Collection<E>public <T> T[] toArray(T[] a)
toArray in interface Collection<E>public boolean remove(Object o)
remove in interface Collection<E>public boolean removeAll(Collection<?> c)
removeAll in interface Collection<E>public boolean retainAll(Collection<?> c)
retainAll in interface Collection<E>Copyright © 2014 Boleslav Bobcik - Auderis. All rights reserved.