A D G L N P S

A

add(int, Node<E>) - Method in class LinkedList
Adds a node to the list; the new node is at the given position.

D

delete(int) - Method in class LinkedList
Deletes the node at the given position.

G

getData(int) - Method in class LinkedList
Returns the data at the given position of the linked list.
getData() - Method in class Node
 
getNext() - Method in class Node
 

L

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

N

Node<E> - Class in <Unnamed>
 
Node(E, Node<E>) - Constructor for class Node
 

P

printList() - Method in class LinkedList
Prints the elements of the list, one per line.

S

search(E) - Method in class LinkedList
Searches the list for an element equal to the given element.
setNext(Node<E>) - Method in class Node
 
size() - Method in class LinkedList
Returns the number of nodes in the list.

A D G L N P S