An object that can be an element in a LinkedList.
All elements of a LinkedList
must extend this class.
The class provides the internal links that link elements together
in the LinkedList
, and a reference to the linked list itself
that an element is currently part of.
An entry can be in at most one linked list at a time.
While an entry is in a linked list, the list property points to that
linked list, and otherwise the list
property is null
.
When created, an entry is not in any linked list.
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
-
list
→ LinkedList<
E> ? -
The linked list containing this element.
no setter
- next → E?
-
The successor of this element in its linked list.
no setter
- previous → E?
-
The predecessor of this element in its linked list.
no setter
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
insertAfter(
E entry) → void - Insert an element after this element in this element's linked list.
-
insertBefore(
E entry) → void - Insert an element before this element in this element's linked list.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
unlink(
) → void - Unlink the element from its linked list.
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited