class
DoubleLinkedQueueEntry<E>

An entry in a doubly linked list. It contains a pointer to the next entry, the previous entry, and the boxed element.

Properties

E element
read / write

Constructors

DoubleLinkedQueueEntry(E element)

Methods

append(E e) → void
prepend(E e) → void
remove() → E
previousEntry() → DoubleLinkedQueueEntry<E>
nextEntry() → DoubleLinkedQueueEntry<E>