Package com.databricks.jdbc.core
Class ArrowResultChunk.ArrowResultChunkIterator
- java.lang.Object
-
- com.databricks.jdbc.core.ArrowResultChunk.ArrowResultChunkIterator
-
- Enclosing class:
- ArrowResultChunk
public static class ArrowResultChunk.ArrowResultChunkIterator extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetColumnObjectAtCurrentRow(int columnIndex)Returns object in the current row at the specified columnIndex.booleanhasNextRow()Returns whether the next row in the chunk exists.booleannextRow()Moves iterator to the next row of the chunk.
-
-
-
Method Detail
-
nextRow
public boolean nextRow()
Moves iterator to the next row of the chunk. Returns false if it is at the last row in the chunk.
-
hasNextRow
public boolean hasNextRow()
Returns whether the next row in the chunk exists.
-
getColumnObjectAtCurrentRow
public Object getColumnObjectAtCurrentRow(int columnIndex)
Returns object in the current row at the specified columnIndex.
-
-