A D G L N S

A

add(int, Node) - Method in class LinkedList
Adds a node to the given index of the linked list.

D

delete(int) - Method in class LinkedList
Deletes a node from the given index of the linked list.

G

getData() - Method in class Node
Gets the data stored in the node.
getNext() - Method in class Node
Gets the next node.
getNode(int) - Method in class LinkedList
Returns the node at the given index.

L

LinkedList - Class in <Unnamed>
 
LinkedList() - Constructor for class LinkedList
Creates an empty linked list.

N

Node - Class in <Unnamed>
 
Node(String, Node) - Constructor for class Node
Creates a node with the given data, and the given next node.

S

setNext(Node) - Method in class Node
Sets the next node.

A D G L N S