A linked list node. More...
Public Member Functions | |
fm.liveswitch.LinkedListNode< T > | getNext () |
Gets the next node. More... | |
fm.liveswitch.LinkedListNode< T > | getPrevious () |
Gets the previous node. More... | |
T | getValue () |
Gets the item in the linked list. More... | |
LinkedListNode (T item) | |
Initializes a new instance of the fm.liveswitch.LinkedListNode class. More... | |
A linked list node.
fm.liveswitch.LinkedListNode< T >.LinkedListNode | ( | T | item | ) |
Initializes a new instance of the fm.liveswitch.LinkedListNode class.
item | The item. |
fm.liveswitch.LinkedListNode<T> fm.liveswitch.LinkedListNode< T >.getNext | ( | ) |
Gets the next node.
Will be
if last.
fm.liveswitch.LinkedListNode<T> fm.liveswitch.LinkedListNode< T >.getPrevious | ( | ) |
Gets the previous node.
Null if first.
T fm.liveswitch.LinkedListNode< T >.getValue | ( | ) |
Gets the item in the linked list.