com.google.datastore.v1.AggregationResultBatchOrBuilder Maven / Gradle / Ivy
/*
* Copyright 2023 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/datastore/v1/aggregation_result.proto
package com.google.datastore.v1;
public interface AggregationResultBatchOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.datastore.v1.AggregationResultBatch)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The aggregation results for this batch.
*
*
* repeated .google.datastore.v1.AggregationResult aggregation_results = 1;
*/
java.util.List getAggregationResultsList();
/**
*
*
*
* The aggregation results for this batch.
*
*
* repeated .google.datastore.v1.AggregationResult aggregation_results = 1;
*/
com.google.datastore.v1.AggregationResult getAggregationResults(int index);
/**
*
*
*
* The aggregation results for this batch.
*
*
* repeated .google.datastore.v1.AggregationResult aggregation_results = 1;
*/
int getAggregationResultsCount();
/**
*
*
*
* The aggregation results for this batch.
*
*
* repeated .google.datastore.v1.AggregationResult aggregation_results = 1;
*/
java.util.List extends com.google.datastore.v1.AggregationResultOrBuilder>
getAggregationResultsOrBuilderList();
/**
*
*
*
* The aggregation results for this batch.
*
*
* repeated .google.datastore.v1.AggregationResult aggregation_results = 1;
*/
com.google.datastore.v1.AggregationResultOrBuilder getAggregationResultsOrBuilder(int index);
/**
*
*
*
* The state of the query after the current batch.
* Only COUNT(*) aggregations are supported in the initial launch. Therefore,
* expected result type is limited to `NO_MORE_RESULTS`.
*
*
* .google.datastore.v1.QueryResultBatch.MoreResultsType more_results = 2;
*
* @return The enum numeric value on the wire for moreResults.
*/
int getMoreResultsValue();
/**
*
*
*
* The state of the query after the current batch.
* Only COUNT(*) aggregations are supported in the initial launch. Therefore,
* expected result type is limited to `NO_MORE_RESULTS`.
*
*
* .google.datastore.v1.QueryResultBatch.MoreResultsType more_results = 2;
*
* @return The moreResults.
*/
com.google.datastore.v1.QueryResultBatch.MoreResultsType getMoreResults();
/**
*
*
*
* Read timestamp this batch was returned from.
*
* In a single transaction, subsequent query result batches for the same query
* can have a greater timestamp. Each batch's read timestamp
* is valid for all preceding batches.
*
*
* .google.protobuf.Timestamp read_time = 3;
*
* @return Whether the readTime field is set.
*/
boolean hasReadTime();
/**
*
*
*
* Read timestamp this batch was returned from.
*
* In a single transaction, subsequent query result batches for the same query
* can have a greater timestamp. Each batch's read timestamp
* is valid for all preceding batches.
*
*
* .google.protobuf.Timestamp read_time = 3;
*
* @return The readTime.
*/
com.google.protobuf.Timestamp getReadTime();
/**
*
*
*
* Read timestamp this batch was returned from.
*
* In a single transaction, subsequent query result batches for the same query
* can have a greater timestamp. Each batch's read timestamp
* is valid for all preceding batches.
*
*
* .google.protobuf.Timestamp read_time = 3;
*/
com.google.protobuf.TimestampOrBuilder getReadTimeOrBuilder();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy