public final class RunQueryRequest extends GeneratedMessageV3 implements RunQueryRequestOrBuilder
The request for Datastore.RunQuery.
Protobuf type google.datastore.v1.RunQueryRequest
Inheritance
Object > AbstractMessageLite<MessageType,BuilderType> > AbstractMessage > GeneratedMessageV3 > RunQueryRequestImplements
RunQueryRequestOrBuilderStatic Fields
GQL_QUERY_FIELD_NUMBER
public static final int GQL_QUERY_FIELD_NUMBER
Type | Description |
int |
PARTITION_ID_FIELD_NUMBER
public static final int PARTITION_ID_FIELD_NUMBER
Type | Description |
int |
PROJECT_ID_FIELD_NUMBER
public static final int PROJECT_ID_FIELD_NUMBER
Type | Description |
int |
QUERY_FIELD_NUMBER
public static final int QUERY_FIELD_NUMBER
Type | Description |
int |
READ_OPTIONS_FIELD_NUMBER
public static final int READ_OPTIONS_FIELD_NUMBER
Type | Description |
int |
Static Methods
getDefaultInstance()
public static RunQueryRequest getDefaultInstance()
Type | Description |
RunQueryRequest |
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
Type | Description |
Descriptor |
newBuilder()
public static RunQueryRequest.Builder newBuilder()
Type | Description |
RunQueryRequest.Builder |
newBuilder(RunQueryRequest prototype)
public static RunQueryRequest.Builder newBuilder(RunQueryRequest prototype)
Name | Description |
prototype | RunQueryRequest |
Type | Description |
RunQueryRequest.Builder |
parseDelimitedFrom(InputStream input)
public static RunQueryRequest parseDelimitedFrom(InputStream input)
Name | Description |
input | InputStream |
Type | Description |
RunQueryRequest |
Type | Description |
IOException |
parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static RunQueryRequest parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | InputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
RunQueryRequest |
Type | Description |
IOException |
parseFrom(byte[] data)
public static RunQueryRequest parseFrom(byte[] data)
Name | Description |
data | byte[] |
Type | Description |
RunQueryRequest |
Type | Description |
InvalidProtocolBufferException |
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static RunQueryRequest parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | byte[] |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
RunQueryRequest |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data)
public static RunQueryRequest parseFrom(ByteString data)
Name | Description |
data | ByteString |
Type | Description |
RunQueryRequest |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static RunQueryRequest parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | ByteString |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
RunQueryRequest |
Type | Description |
InvalidProtocolBufferException |
parseFrom(CodedInputStream input)
public static RunQueryRequest parseFrom(CodedInputStream input)
Name | Description |
input | CodedInputStream |
Type | Description |
RunQueryRequest |
Type | Description |
IOException |
parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public static RunQueryRequest parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | CodedInputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
RunQueryRequest |
Type | Description |
IOException |
parseFrom(InputStream input)
public static RunQueryRequest parseFrom(InputStream input)
Name | Description |
input | InputStream |
Type | Description |
RunQueryRequest |
Type | Description |
IOException |
parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static RunQueryRequest parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | InputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
RunQueryRequest |
Type | Description |
IOException |
parseFrom(ByteBuffer data)
public static RunQueryRequest parseFrom(ByteBuffer data)
Name | Description |
data | ByteBuffer |
Type | Description |
RunQueryRequest |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static RunQueryRequest parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | ByteBuffer |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
RunQueryRequest |
Type | Description |
InvalidProtocolBufferException |
parser()
public static Parser<RunQueryRequest> parser()
Type | Description |
Parser<RunQueryRequest> |
Methods
equals(Object obj)
public boolean equals(Object obj)
Name | Description |
obj | Object |
Type | Description |
boolean |
getDefaultInstanceForType()
public RunQueryRequest getDefaultInstanceForType()
Type | Description |
RunQueryRequest |
getGqlQuery()
public GqlQuery getGqlQuery()
The GQL query to run.
.google.datastore.v1.GqlQuery gql_query = 7;
Type | Description |
GqlQuery | The gqlQuery. |
getGqlQueryOrBuilder()
public GqlQueryOrBuilder getGqlQueryOrBuilder()
The GQL query to run.
.google.datastore.v1.GqlQuery gql_query = 7;
Type | Description |
GqlQueryOrBuilder |
getParserForType()
public Parser<RunQueryRequest> getParserForType()
Type | Description |
Parser<RunQueryRequest> |
getPartitionId()
public PartitionId getPartitionId()
Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single partition. This partition ID is normalized with the standard default context partition ID.
.google.datastore.v1.PartitionId partition_id = 2;
Type | Description |
PartitionId | The partitionId. |
getPartitionIdOrBuilder()
public PartitionIdOrBuilder getPartitionIdOrBuilder()
Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single partition. This partition ID is normalized with the standard default context partition ID.
.google.datastore.v1.PartitionId partition_id = 2;
Type | Description |
PartitionIdOrBuilder |
getProjectId()
public String getProjectId()
Required. The ID of the project against which to make the request.
string project_id = 8 [(.google.api.field_behavior) = REQUIRED];
Type | Description |
String | The projectId. |
getProjectIdBytes()
public ByteString getProjectIdBytes()
Required. The ID of the project against which to make the request.
string project_id = 8 [(.google.api.field_behavior) = REQUIRED];
Type | Description |
ByteString | The bytes for projectId. |
getQuery()
public Query getQuery()
The query to run.
.google.datastore.v1.Query query = 3;
Type | Description |
Query | The query. |
getQueryOrBuilder()
public QueryOrBuilder getQueryOrBuilder()
The query to run.
.google.datastore.v1.Query query = 3;
Type | Description |
QueryOrBuilder |
getQueryTypeCase()
public RunQueryRequest.QueryTypeCase getQueryTypeCase()
Type | Description |
RunQueryRequest.QueryTypeCase |
getReadOptions()
public ReadOptions getReadOptions()
The options for this query.
.google.datastore.v1.ReadOptions read_options = 1;
Type | Description |
ReadOptions | The readOptions. |
getReadOptionsOrBuilder()
public ReadOptionsOrBuilder getReadOptionsOrBuilder()
The options for this query.
.google.datastore.v1.ReadOptions read_options = 1;
Type | Description |
ReadOptionsOrBuilder |
getSerializedSize()
public int getSerializedSize()
Type | Description |
int |
getUnknownFields()
public final UnknownFieldSet getUnknownFields()
Type | Description |
UnknownFieldSet |
hasGqlQuery()
public boolean hasGqlQuery()
The GQL query to run.
.google.datastore.v1.GqlQuery gql_query = 7;
Type | Description |
boolean | Whether the gqlQuery field is set. |
hasPartitionId()
public boolean hasPartitionId()
Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single partition. This partition ID is normalized with the standard default context partition ID.
.google.datastore.v1.PartitionId partition_id = 2;
Type | Description |
boolean | Whether the partitionId field is set. |
hasQuery()
public boolean hasQuery()
The query to run.
.google.datastore.v1.Query query = 3;
Type | Description |
boolean | Whether the query field is set. |
hasReadOptions()
public boolean hasReadOptions()
The options for this query.
.google.datastore.v1.ReadOptions read_options = 1;
Type | Description |
boolean | Whether the readOptions field is set. |
hashCode()
public int hashCode()
Type | Description |
int |
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Type | Description |
FieldAccessorTable |
isInitialized()
public final boolean isInitialized()
Type | Description |
boolean |
newBuilderForType()
public RunQueryRequest.Builder newBuilderForType()
Type | Description |
RunQueryRequest.Builder |
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected RunQueryRequest.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Name | Description |
parent | BuilderParent |
Type | Description |
RunQueryRequest.Builder |
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Name | Description |
unused | UnusedPrivateParameter |
Type | Description |
Object |
toBuilder()
public RunQueryRequest.Builder toBuilder()
Type | Description |
RunQueryRequest.Builder |
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Name | Description |
output | CodedOutputStream |
Type | Description |
IOException |