Interface QueryResultOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
QueryResult, QueryResult.Builder

public interface QueryResultOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Details

    • getRowList

      List<ValueList> getRowList()
       Rows read. Each row is a struct with multiple fields, one for each column
       in read result. All rows have the same type.
       
      repeated .google.spanner.executor.v1.ValueList row = 1;
    • getRow

      ValueList getRow(int index)
       Rows read. Each row is a struct with multiple fields, one for each column
       in read result. All rows have the same type.
       
      repeated .google.spanner.executor.v1.ValueList row = 1;
    • getRowCount

      int getRowCount()
       Rows read. Each row is a struct with multiple fields, one for each column
       in read result. All rows have the same type.
       
      repeated .google.spanner.executor.v1.ValueList row = 1;
    • getRowOrBuilderList

      List<? extends ValueListOrBuilder> getRowOrBuilderList()
       Rows read. Each row is a struct with multiple fields, one for each column
       in read result. All rows have the same type.
       
      repeated .google.spanner.executor.v1.ValueList row = 1;
    • getRowOrBuilder

      ValueListOrBuilder getRowOrBuilder(int index)
       Rows read. Each row is a struct with multiple fields, one for each column
       in read result. All rows have the same type.
       
      repeated .google.spanner.executor.v1.ValueList row = 1;
    • hasRowType

      boolean hasRowType()
       The type of rows read. It must be set if at least one row was read.
       
      optional .google.spanner.v1.StructType row_type = 2;
      Returns:
      Whether the rowType field is set.
    • getRowType

      StructType getRowType()
       The type of rows read. It must be set if at least one row was read.
       
      optional .google.spanner.v1.StructType row_type = 2;
      Returns:
      The rowType.
    • getRowTypeOrBuilder

      StructTypeOrBuilder getRowTypeOrBuilder()
       The type of rows read. It must be set if at least one row was read.
       
      optional .google.spanner.v1.StructType row_type = 2;