15 lines
382 B
Java
15 lines
382 B
Java
|
|
/**
|
|
* Data Structures & Algorithms 6th Edition
|
|
* Goodrick, Tamassia, Goldwasser
|
|
* Code Fragement 7.7
|
|
*/
|
|
public interface Position<E> {
|
|
/**
|
|
* Returns the element stored at this position.
|
|
*
|
|
* @return the stored element
|
|
* @thorws IllegalStateExceptoin if position no longer valid
|
|
*/
|
|
E getElement( ) throws IllegalStateException;
|
|
}
|