Interface LayerRowReader
-
- All Superinterfaces:
YieldableReader
public interface LayerRowReader extends YieldableReader
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.iotdb.udf.api.access.RowcurrentRow()longcurrentTime()org.apache.iotdb.tsfile.file.metadata.enums.TSDataType[]getDataTypes()booleanisCurrentNull()whether current row fields are all nullbooleannext()voidreadyForNext()-
Methods inherited from interface org.apache.iotdb.db.mpp.transformation.api.YieldableReader
yield
-
-
-
-
Method Detail
-
next
boolean next() throws java.io.IOException, QueryProcessException- Throws:
java.io.IOExceptionQueryProcessException
-
readyForNext
void readyForNext()
-
getDataTypes
org.apache.iotdb.tsfile.file.metadata.enums.TSDataType[] getDataTypes()
-
currentTime
long currentTime() throws java.io.IOException- Throws:
java.io.IOException
-
currentRow
org.apache.iotdb.udf.api.access.Row currentRow()
-
isCurrentNull
boolean isCurrentNull() throws java.io.IOExceptionwhether current row fields are all null- Throws:
java.io.IOException
-
-