public interface Position<E>
{
   E element() throws InvalidPositionException;
}
    
