Represents a node in a doubly linked list.
Creates a Node with two pointers (next and prev) and data.
The data to store in the node.
Sets the next node.
The next node in the list.
Sets the previous node.
The previous node in the list.
Static
Creates a Node from an object.
The object to create a node from.
The created node.
Represents a node in a doubly linked list.