Class TableResult (2.51.0)

public abstract class TableResult implements Page<FieldValueList>, Serializable

Inheritance

Object > TableResult

Static Methods

newBuilder()

public static TableResult.Builder newBuilder()
Returns
TypeDescription
TableResult.Builder

Constructors

TableResult()

public TableResult()

Methods

equals(Object obj)

public final boolean equals(Object obj)
Parameter
NameDescription
objObject
Returns
TypeDescription
boolean
Overrides

getJobId()

public abstract JobId getJobId()
Returns
TypeDescription
JobId

getNextPage()

public TableResult getNextPage()
Returns
TypeDescription
TableResult

getNextPageToken()

public String getNextPageToken()
Returns
TypeDescription
String

getPageNoSchema()

public abstract Page<FieldValueList> getPageNoSchema()
Returns
TypeDescription
Page<FieldValueList>

getQueryId()

public abstract String getQueryId()
Returns
TypeDescription
String

getSchema()

public abstract Schema getSchema()

Returns the schema of the results. Null if the schema is not supplied.

Returns
TypeDescription
Schema

getTotalRows()

public abstract long getTotalRows()

Returns the total number of rows in the complete result set, which can be more than the number of rows in the first page of results. If no rows are returned, this value can still be greater than 0 if any rows were affected by the query, such as INSERT, UPDATE, or DELETE queries.

Returns
TypeDescription
long

getValues()

public Iterable<FieldValueList> getValues()
Returns
TypeDescription
Iterable<FieldValueList>

hasNextPage()

public boolean hasNextPage()
Returns
TypeDescription
boolean

hashCode()

public final int hashCode()
Returns
TypeDescription
int
Overrides

iterateAll()

public Iterable<FieldValueList> iterateAll()
Returns
TypeDescription
Iterable<FieldValueList>

toBuilder()

public abstract TableResult.Builder toBuilder()
Returns
TypeDescription
TableResult.Builder

toString()

public String toString()
Returns
TypeDescription
String
Overrides