Class SessionDataSet.DataIterator

  • Enclosing class:
    SessionDataSet

    public class SessionDataSet.DataIterator
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      DataIterator()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int findColumn​(java.lang.String columnName)  
      boolean getBoolean​(int columnIndex)  
      boolean getBoolean​(java.lang.String columnName)  
      double getDouble​(int columnIndex)  
      double getDouble​(java.lang.String columnName)  
      float getFloat​(int columnIndex)  
      float getFloat​(java.lang.String columnName)  
      int getInt​(int columnIndex)  
      int getInt​(java.lang.String columnName)  
      long getLong​(int columnIndex)  
      long getLong​(java.lang.String columnName)  
      java.lang.Object getObject​(int columnIndex)  
      java.lang.Object getObject​(java.lang.String columnName)  
      java.lang.String getString​(int columnIndex)  
      java.lang.String getString​(java.lang.String columnName)  
      java.sql.Timestamp getTimestamp​(int columnIndex)  
      java.sql.Timestamp getTimestamp​(java.lang.String columnName)  
      boolean isNull​(int columnIndex)  
      boolean isNull​(java.lang.String columnName)  
      boolean next()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DataIterator

        public DataIterator()
    • Method Detail

      • next

        public boolean next()
                     throws org.apache.iotdb.rpc.StatementExecutionException,
                            org.apache.iotdb.rpc.IoTDBConnectionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
        org.apache.iotdb.rpc.IoTDBConnectionException
      • isNull

        public boolean isNull​(int columnIndex)
                       throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • isNull

        public boolean isNull​(java.lang.String columnName)
                       throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getBoolean

        public boolean getBoolean​(int columnIndex)
                           throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getBoolean

        public boolean getBoolean​(java.lang.String columnName)
                           throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getDouble

        public double getDouble​(int columnIndex)
                         throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getDouble

        public double getDouble​(java.lang.String columnName)
                         throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getFloat

        public float getFloat​(int columnIndex)
                       throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getFloat

        public float getFloat​(java.lang.String columnName)
                       throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getInt

        public int getInt​(int columnIndex)
                   throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getInt

        public int getInt​(java.lang.String columnName)
                   throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getLong

        public long getLong​(int columnIndex)
                     throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getLong

        public long getLong​(java.lang.String columnName)
                     throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getObject

        public java.lang.Object getObject​(int columnIndex)
                                   throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getObject

        public java.lang.Object getObject​(java.lang.String columnName)
                                   throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getString

        public java.lang.String getString​(int columnIndex)
                                   throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getString

        public java.lang.String getString​(java.lang.String columnName)
                                   throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getTimestamp

        public java.sql.Timestamp getTimestamp​(int columnIndex)
                                        throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • getTimestamp

        public java.sql.Timestamp getTimestamp​(java.lang.String columnName)
                                        throws org.apache.iotdb.rpc.StatementExecutionException
        Throws:
        org.apache.iotdb.rpc.StatementExecutionException
      • findColumn

        public int findColumn​(java.lang.String columnName)