| Package | system.data.lists |
| Class | public class LinkedListEntry |
| Inheritance | LinkedListEntry Object |
LinkedList class to defined all entries in the list and the links betweens alls.
| Property | Defined By | ||
|---|---|---|---|
| element : *
The element of this entry. | LinkedListEntry | ||
| next : LinkedListEntry
The next entry. | LinkedListEntry | ||
| previous : LinkedListEntry
The previous entry. | LinkedListEntry | ||
| Method | Defined By | ||
|---|---|---|---|
Creates a new LinkedListEntry instance. | LinkedListEntry | ||
| element | property |
public var element:*The element of this entry.
| next | property |
public var next:LinkedListEntryThe next entry.
| previous | property |
public var previous:LinkedListEntryThe previous entry.
| LinkedListEntry | () | Constructor |
public function LinkedListEntry(element:* = null, next:LinkedListEntry = null, previous:LinkedListEntry = null)Creates a new LinkedListEntry instance.
Parameterselement:* (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.
|