- add(T) - Method in interface list.ListADT
 
- 
Adds an item to this list, in order or at the end.
 
- add(T) - Method in class list.OrderedList
 
- 
Adds an item to this list and maintains sequential order.
 
- add(T) - Method in class list.UnorderedList
 
- 
Adds an item at the end of this list.
 
- addAtPosition(T, int) - Method in class list.UnorderedList
 
- 
Adds an item at a specified index in this list.
 
- addToFront(T) - Method in class list.UnorderedList
 
- 
Adds an item at the front of this list.
 
- addToRear(T) - Method in class list.UnorderedList
 
- 
Adds an item at the end of this list.