View Javadoc

1   package uba.db.column.io;
2   
3   import java.io.IOException;
4   
5   /***
6    * Las implementaciones de esta interfaz son utilizadas para leer el valor de una
7    * columna.
8    *
9    * @version $Revision: 1.2 $
10   */
11  public interface ColumnReader {
12      /***
13       * Retorna el valor de la columna.
14       *
15       * @throws IOException si ocurrió un error al leer el valor.
16       */
17      Object read() throws IOException;
18  }