Java java.util.concurrent ConcurrentLinkedDeque fields, constructors, methods, implement or subclass

Example usage for Java java.util.concurrent ConcurrentLinkedDeque fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util.concurrent ConcurrentLinkedDeque.

The text is from its open source code.

Constructor

ConcurrentLinkedDeque()
Constructs an empty deque.

Method

booleanadd(E e)
Inserts the specified element at the tail of this deque.
booleanaddAll(Collection c)
Appends all of the elements in the specified collection to the end of this deque, in the order that they are returned by the specified collection's iterator.
voidaddFirst(E e)
Inserts the specified element at the front of this deque.
EgetLast()
booleanisEmpty()
Returns true if this collection contains no elements.
voidpush(E e)
intsize()
Returns the number of elements in this deque.
Streamstream()
Returns a sequential Stream with this collection as its source.