A D G L P

A

add(int, T) - Method in class LinkedList
Adds the given data to the linked list.

D

delete(int) - Method in class LinkedList
Deletes data at position index from the linked list.

G

getData(int) - Method in class LinkedList
Returns the data at the given index of the linked list.
getLength() - Method in class LinkedList
Gets the length (i.e., number of data elements) in the list.

L

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

P

printList() - Method in class LinkedList
Prints all the data in the linked list to the screen, in order of index.

A D G L P