Skip navigation links
A F G I L M N R S T 

A

add(Object) - Method in interface IList
Appends an object to the end of the list.
add(Object, int) - Method in interface IList
Adds a new element to the list at the index specified as an argument.
add(Object) - Method in class List
 
add(Object, int) - Method in class List
 

F

find(Object) - Method in interface IList
Returns the index at which the object passed as an argument can be found in the list.
find(Object) - Method in class List
 

G

get(int) - Method in interface IList
Returns the list element stored at the index specified as an argument.
get(int) - Method in class List
 
getLength() - Method in interface IList
Returns the number of elements in the list.
getLength() - Method in class List
 
getNext() - Method in class Node
 
getValue() - Method in class Node
 

I

IList - Interface in <Unnamed>
An interface specifying the operations that should be supported by a simple list data structure.

L

List - Class in <Unnamed>
 
List() - Constructor for class List
 
ListTest - Class in <Unnamed>
A class that tests out a list implementation.
ListTest() - Constructor for class ListTest
 

M

main(String[]) - Static method in class ListTest
Creates a list, adds integer elements from 0 to 99, deletes an element, adds it back in and finally prints the list's contents.

N

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

R

remove(int) - Method in interface IList
Removes the list element located at the index specified as an argument.
remove(int) - Method in class List
 

S

setNext(Node) - Method in class Node
 
setValue(Object) - Method in class Node
 

T

toString() - Method in interface IList
Returns a String representation of the list elements.
toString() - Method in class List
 
A F G I L M N R S T 
Skip navigation links