A C G L R S

A

add(Object) - Method in interface List12
Equivalent to addToBack.
addToBack(Object) - Method in interface List12
Adds the specified Object o, which may be null, to the back of the list (i.e., at the tail).
addToFront(Object) - Method in interface List12
Adds the specified Object o, which may be null, to the front of the list (i.e., at the head).

C

clear() - Method in interface List12
Removes all elements from the list.
contains(Object) - Method in interface List12
Returns whether the specified Object o is contained in the list.

G

get(int) - Method in interface List12
Returns the element stored at location index, where index 0 is the element stored at the head of the list and size()-1 is the index of the element at the tail of the list.

L

List12 - Interface in <Unnamed>
Abstract data type for a dynamically growing list.

R

remove(Object) - Method in interface List12
Removes the first occurrence (ordered from front to back, i.e., head to tail of the list) of the specified Object o from the list, if it exists.
removeBack() - Method in interface List12
Removes and returns the element at the back of the list.
removeFront() - Method in interface List12
Removes and returns the element at the front of the list.

S

size() - Method in interface List12
Returns the number of elements (null or otherwise) currently stored in the list.

A C G L R S