C E F G L S

C

checkEqualityIF - interface checkEqualityIF.
Classes tha implement this interface can be checked for equality.

E

elements() - Method in class LinkedList
Return an Enumeration of the data in this linked list (the heads).
equals(checkEqualityIF) - Method in interface checkEqualityIF
Check if two objects are equal.

F

find(checkEqualityIF) - Method in class LinkedList
Find an object in a linked list that is equal to the given object.

G

getHead() - Method in class LinkedList
Return the head of this linked list.
getTail() - Method in class LinkedList
Return the tail of this linked list.

L

LinkedList - class LinkedList.
Instances of this class are nodes of a linked list.
LinkedList() - Constructor for class LinkedList
This constructor creates a LinkedList with a null head and a null tail.
LinkedList(checkEqualityIF) - Constructor for class LinkedList
This constructor creates a LinkedList with the given head and a null tail.
LinkedList(checkEqualityIF, LinkedList) - Constructor for class LinkedList
This constructor creates a LinkedList with the given head and tail.

S

size() - Method in class LinkedList
Return the number of nodes in this linked list

C E F G L S