public interface QueryResultOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getNextPageToken()
public abstract String getNextPageToken()Token to retrieve the next page of the results.
string next_page_token = 3;
| Type | Description |
| String | The nextPageToken. |
getNextPageTokenBytes()
public abstract ByteString getNextPageTokenBytes()Token to retrieve the next page of the results.
string next_page_token = 3;
| Type | Description |
| ByteString | The bytes for nextPageToken. |
getRows(int index)
public abstract Struct getRows(int index) Each row hold a query result in the format of Struct.
repeated .google.protobuf.Struct rows = 1;
| Name | Description |
| index | int |
| Type | Description |
| Struct |
getRowsCount()
public abstract int getRowsCount() Each row hold a query result in the format of Struct.
repeated .google.protobuf.Struct rows = 1;
| Type | Description |
| int |
getRowsList()
public abstract List<Struct> getRowsList() Each row hold a query result in the format of Struct.
repeated .google.protobuf.Struct rows = 1;
| Type | Description |
| List<Struct> |
getRowsOrBuilder(int index)
public abstract StructOrBuilder getRowsOrBuilder(int index) Each row hold a query result in the format of Struct.
repeated .google.protobuf.Struct rows = 1;
| Name | Description |
| index | int |
| Type | Description |
| StructOrBuilder |
getRowsOrBuilderList()
public abstract List<? extends StructOrBuilder> getRowsOrBuilderList() Each row hold a query result in the format of Struct.
repeated .google.protobuf.Struct rows = 1;
| Type | Description |
| List<? extends com.google.protobuf.StructOrBuilder> |
getSchema()
public abstract TableSchema getSchema()Describes the format of the [rows].
.google.cloud.asset.v1.TableSchema schema = 2;
| Type | Description |
| TableSchema | The schema. |
getSchemaOrBuilder()
public abstract TableSchemaOrBuilder getSchemaOrBuilder()Describes the format of the [rows].
.google.cloud.asset.v1.TableSchema schema = 2;
| Type | Description |
| TableSchemaOrBuilder |
getTotalRows()
public abstract long getTotalRows()Total rows of the whole query results.
int64 total_rows = 4;
| Type | Description |
| long | The totalRows. |
hasSchema()
public abstract boolean hasSchema()Describes the format of the [rows].
.google.cloud.asset.v1.TableSchema schema = 2;
| Type | Description |
| boolean | Whether the schema field is set. |