An entry in a doubly linked list. It contains a pointer to the next entry, the previous entry, and the boxed element.
Constructors
- DoubleLinkedQueueEntry(E element)
Properties
Operators
-
operator ==(
other) → bool -
The equality operator.…
inherited
Methods
-
append(
E e) → void -
nextEntry(
) → DoubleLinkedQueueEntry<E> -
noSuchMethod(
Invocation invocation) → dynamic -
noSuchMethod is invoked when users invoke a non-existent method on an object. The name of the method and the arguments of the invocation are passed to noSuchMethod in an Invocation. If noSuchMethod returns a value, that value becomes the result of the original invocation.…
inherited -
prepend(
E e) → void -
previousEntry(
) → DoubleLinkedQueueEntry<E> -
remove(
) → E -
toString(
) → String -
Returns a string representation of this object.
inherited