E
- Type of contained elements.public class LinkedBlockingStack<E> extends Object implements BlockingQueue<E>
BlockingQueue
interface returning elements in LIFO order.Constructor and Description |
---|
LinkedBlockingStack() |
Modifier and Type | Method and Description |
---|---|
boolean |
add(E element) |
boolean |
addAll(Collection<? extends E> collection) |
void |
clear() |
boolean |
contains(Object object) |
boolean |
containsAll(Collection<?> collection) |
int |
drainTo(Collection<? super E> collection) |
int |
drainTo(Collection<? super E> collection,
int maxElements) |
E |
element() |
boolean |
isEmpty() |
Iterator<E> |
iterator() |
boolean |
offer(E element) |
boolean |
offer(E element,
long timeout,
TimeUnit unit) |
E |
peek() |
E |
poll() |
E |
poll(long timeout,
TimeUnit unit) |
void |
put(E element) |
int |
remainingCapacity() |
E |
remove() |
boolean |
remove(Object object) |
boolean |
removeAll(Collection<?> collection) |
boolean |
retainAll(Collection<?> collection) |
int |
size() |
E |
take() |
Object[] |
toArray() |
<T> T[] |
toArray(T[] array) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
equals, hashCode, parallelStream, removeIf, spliterator, stream
public boolean add(E element)
add
in interface Collection<E>
add
in interface BlockingQueue<E>
add
in interface Queue<E>
public boolean offer(E element)
public void put(E element) throws InterruptedException
put
in interface BlockingQueue<E>
InterruptedException
public boolean offer(E element, long timeout, TimeUnit unit) throws InterruptedException
offer
in interface BlockingQueue<E>
InterruptedException
public E take() throws InterruptedException
take
in interface BlockingQueue<E>
InterruptedException
public E poll(long timeout, TimeUnit unit) throws InterruptedException
poll
in interface BlockingQueue<E>
InterruptedException
public int remainingCapacity()
remainingCapacity
in interface BlockingQueue<E>
public boolean remove(Object object)
remove
in interface Collection<E>
remove
in interface BlockingQueue<E>
public boolean addAll(Collection<? extends E> collection)
addAll
in interface Collection<E>
public void clear()
clear
in interface Collection<E>
public boolean retainAll(Collection<?> collection)
retainAll
in interface Collection<E>
public boolean removeAll(Collection<?> collection)
removeAll
in interface Collection<E>
public boolean containsAll(Collection<?> collection)
containsAll
in interface Collection<E>
public int size()
size
in interface Collection<E>
public boolean isEmpty()
isEmpty
in interface Collection<E>
public boolean contains(Object object)
contains
in interface Collection<E>
contains
in interface BlockingQueue<E>
public Object[] toArray()
toArray
in interface Collection<E>
public <T> T[] toArray(T[] array)
toArray
in interface Collection<E>
public int drainTo(Collection<? super E> collection)
drainTo
in interface BlockingQueue<E>
public int drainTo(Collection<? super E> collection, int maxElements)
drainTo
in interface BlockingQueue<E>