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

Properties

element → E
read / write

Constructors

DoubleLinkedQueueEntry(E element)

Methods

append(E e) → void

nextEntry() → DoubleLinkedQueueEntry<E>

prepend(E e) → void

previousEntry() → DoubleLinkedQueueEntry<E>

remove() → E