Interface IndexedTable.Reader
-
- All Superinterfaces:
AutoCloseable,Closeable
- Enclosing interface:
- IndexedTable
public static interface IndexedTable.Reader extends Closeable
Readers support reading values out of any column.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidclose()Objectread(int row)Read the value at a particular row number.
-
-
-
Method Detail
-
read
@Nullable Object read(int row)
Read the value at a particular row number. Throws an exception if the row is out of bounds (must be between zero andIndexedTable.numRows()).
-
close
default void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException
-
-