Linked list node class.
One of: - the real successor Node - this Node, meaning the successor is head.next - null, meaning there is no successor (this is the last node)
See Implementation
Linked list node class.