fm.liveswitch.LinkedListNode< T > Class Template Reference

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...
 
getValue ()
 Gets the item in the linked list. More...
 
 LinkedListNode (T item)
 Initializes a new instance of the fm.liveswitch.LinkedListNode class. More...
 

Detailed Description

A linked list node.

Constructor & Destructor Documentation

◆ LinkedListNode()

Initializes a new instance of the fm.liveswitch.LinkedListNode class.

Parameters
itemThe item.

Member Function Documentation

◆ getNext()

Gets the next node.

Will be

null

if last.

◆ getPrevious()

Gets the previous node.

Null if first.

◆ getValue()

T fm.liveswitch.LinkedListNode< T >.getValue ( )

Gets the item in the linked list.