Packagesystem.data.lists
Classpublic class LinkedListEntry
InheritanceLinkedListEntry Inheritance Object

Internal class in the LinkedList class to defined all entries in the list and the links betweens alls.



Public Properties
 PropertyDefined By
  element : *
The element of this entry.
LinkedListEntry
  next : LinkedListEntry
The next entry.
LinkedListEntry
  previous : LinkedListEntry
The previous entry.
LinkedListEntry
Public Methods
 MethodDefined By
  
LinkedListEntry(element:* = null, next:LinkedListEntry = null, previous:LinkedListEntry = null)
Creates a new LinkedListEntry instance.
LinkedListEntry
Property Detail
elementproperty
public var element:*

The element of this entry.

nextproperty 
public var next:LinkedListEntry

The next entry.

previousproperty 
public var previous:LinkedListEntry

The previous entry.

Constructor Detail
LinkedListEntry()Constructor
public function LinkedListEntry(element:* = null, next:LinkedListEntry = null, previous:LinkedListEntry = null)

Creates a new LinkedListEntry instance.

Parameters
element:* (default = null) — the value of the entry in the LinkedList
 
next:LinkedListEntry (default = null) — next LinkedListEntry of this entry.
 
previous:LinkedListEntry (default = null) — previous LinkedListEntry of this entry.