com.google.firestore.v1.StructuredAggregationQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-firestore-v1 Show documentation
Show all versions of proto-google-cloud-firestore-v1 Show documentation
PROTO library for proto-google-cloud-firestore-v1
/*
* Copyright 2024 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/firestore/v1/query.proto
// Protobuf Java Version: 3.25.4
package com.google.firestore.v1;
/**
*
*
*
* Firestore query for running an aggregation over a
* [StructuredQuery][google.firestore.v1.StructuredQuery].
*
*
* Protobuf type {@code google.firestore.v1.StructuredAggregationQuery}
*/
public final class StructuredAggregationQuery extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.firestore.v1.StructuredAggregationQuery)
StructuredAggregationQueryOrBuilder {
private static final long serialVersionUID = 0L;
// Use StructuredAggregationQuery.newBuilder() to construct.
private StructuredAggregationQuery(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private StructuredAggregationQuery() {
aggregations_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new StructuredAggregationQuery();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.firestore.v1.StructuredAggregationQuery.class,
com.google.firestore.v1.StructuredAggregationQuery.Builder.class);
}
public interface AggregationOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.firestore.v1.StructuredAggregationQuery.Aggregation)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Count aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Count count = 1;
*
* @return Whether the count field is set.
*/
boolean hasCount();
/**
*
*
*
* Count aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Count count = 1;
*
* @return The count.
*/
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count getCount();
/**
*
*
*
* Count aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Count count = 1;
*/
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.CountOrBuilder
getCountOrBuilder();
/**
*
*
*
* Sum aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum sum = 2;
*
* @return Whether the sum field is set.
*/
boolean hasSum();
/**
*
*
*
* Sum aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum sum = 2;
*
* @return The sum.
*/
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum getSum();
/**
*
*
*
* Sum aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum sum = 2;
*/
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.SumOrBuilder getSumOrBuilder();
/**
*
*
*
* Average aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg avg = 3;
*
* @return Whether the avg field is set.
*/
boolean hasAvg();
/**
*
*
*
* Average aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg avg = 3;
*
* @return The avg.
*/
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg getAvg();
/**
*
*
*
* Average aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg avg = 3;
*/
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.AvgOrBuilder getAvgOrBuilder();
/**
*
*
*
* Optional. Optional name of the field to store the result of the
* aggregation into.
*
* If not provided, Firestore will pick a default name following the format
* `field_<incremental_id++>`. For example:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2),
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*)
* OVER (
* ...
* );
* ```
*
* becomes:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2) AS field_1,
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*) AS field_2
* OVER (
* ...
* );
* ```
*
* Requires:
*
* * Must be unique across all aggregation aliases.
* * Conform to [document field name][google.firestore.v1.Document.fields]
* limitations.
*
*
* string alias = 7 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The alias.
*/
java.lang.String getAlias();
/**
*
*
*
* Optional. Optional name of the field to store the result of the
* aggregation into.
*
* If not provided, Firestore will pick a default name following the format
* `field_<incremental_id++>`. For example:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2),
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*)
* OVER (
* ...
* );
* ```
*
* becomes:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2) AS field_1,
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*) AS field_2
* OVER (
* ...
* );
* ```
*
* Requires:
*
* * Must be unique across all aggregation aliases.
* * Conform to [document field name][google.firestore.v1.Document.fields]
* limitations.
*
*
* string alias = 7 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for alias.
*/
com.google.protobuf.ByteString getAliasBytes();
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.OperatorCase getOperatorCase();
}
/**
*
*
*
* Defines an aggregation that produces a single result.
*
*
* Protobuf type {@code google.firestore.v1.StructuredAggregationQuery.Aggregation}
*/
public static final class Aggregation extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.firestore.v1.StructuredAggregationQuery.Aggregation)
AggregationOrBuilder {
private static final long serialVersionUID = 0L;
// Use Aggregation.newBuilder() to construct.
private Aggregation(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Aggregation() {
alias_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new Aggregation();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.class,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Builder.class);
}
public interface CountOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.firestore.v1.StructuredAggregationQuery.Aggregation.Count)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Optional. Optional constraint on the maximum number of documents to
* count.
*
* This provides a way to set an upper bound on the number of documents
* to scan, limiting latency, and cost.
*
* Unspecified is interpreted as no bound.
*
* High-Level Example:
*
* ```
* AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
* ```
*
* Requires:
*
* * Must be greater than zero when present.
*
*
* .google.protobuf.Int64Value up_to = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return Whether the upTo field is set.
*/
boolean hasUpTo();
/**
*
*
*
* Optional. Optional constraint on the maximum number of documents to
* count.
*
* This provides a way to set an upper bound on the number of documents
* to scan, limiting latency, and cost.
*
* Unspecified is interpreted as no bound.
*
* High-Level Example:
*
* ```
* AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
* ```
*
* Requires:
*
* * Must be greater than zero when present.
*
*
* .google.protobuf.Int64Value up_to = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The upTo.
*/
com.google.protobuf.Int64Value getUpTo();
/**
*
*
*
* Optional. Optional constraint on the maximum number of documents to
* count.
*
* This provides a way to set an upper bound on the number of documents
* to scan, limiting latency, and cost.
*
* Unspecified is interpreted as no bound.
*
* High-Level Example:
*
* ```
* AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
* ```
*
* Requires:
*
* * Must be greater than zero when present.
*
*
* .google.protobuf.Int64Value up_to = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*/
com.google.protobuf.Int64ValueOrBuilder getUpToOrBuilder();
}
/**
*
*
*
* Count of documents that match the query.
*
* The `COUNT(*)` aggregation function operates on the entire document
* so it does not require a field reference.
*
*
* Protobuf type {@code google.firestore.v1.StructuredAggregationQuery.Aggregation.Count}
*/
public static final class Count extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.firestore.v1.StructuredAggregationQuery.Aggregation.Count)
CountOrBuilder {
private static final long serialVersionUID = 0L;
// Use Count.newBuilder() to construct.
private Count(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Count() {}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new Count();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_Count_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_Count_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count.class,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count.Builder.class);
}
private int bitField0_;
public static final int UP_TO_FIELD_NUMBER = 1;
private com.google.protobuf.Int64Value upTo_;
/**
*
*
*
* Optional. Optional constraint on the maximum number of documents to
* count.
*
* This provides a way to set an upper bound on the number of documents
* to scan, limiting latency, and cost.
*
* Unspecified is interpreted as no bound.
*
* High-Level Example:
*
* ```
* AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
* ```
*
* Requires:
*
* * Must be greater than zero when present.
*
*
* .google.protobuf.Int64Value up_to = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return Whether the upTo field is set.
*/
@java.lang.Override
public boolean hasUpTo() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* Optional. Optional constraint on the maximum number of documents to
* count.
*
* This provides a way to set an upper bound on the number of documents
* to scan, limiting latency, and cost.
*
* Unspecified is interpreted as no bound.
*
* High-Level Example:
*
* ```
* AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
* ```
*
* Requires:
*
* * Must be greater than zero when present.
*
*
* .google.protobuf.Int64Value up_to = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The upTo.
*/
@java.lang.Override
public com.google.protobuf.Int64Value getUpTo() {
return upTo_ == null ? com.google.protobuf.Int64Value.getDefaultInstance() : upTo_;
}
/**
*
*
*
* Optional. Optional constraint on the maximum number of documents to
* count.
*
* This provides a way to set an upper bound on the number of documents
* to scan, limiting latency, and cost.
*
* Unspecified is interpreted as no bound.
*
* High-Level Example:
*
* ```
* AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
* ```
*
* Requires:
*
* * Must be greater than zero when present.
*
*
* .google.protobuf.Int64Value up_to = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*/
@java.lang.Override
public com.google.protobuf.Int64ValueOrBuilder getUpToOrBuilder() {
return upTo_ == null ? com.google.protobuf.Int64Value.getDefaultInstance() : upTo_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(1, getUpTo());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getUpTo());
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj
instanceof com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count)) {
return super.equals(obj);
}
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count other =
(com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count) obj;
if (hasUpTo() != other.hasUpTo()) return false;
if (hasUpTo()) {
if (!getUpTo().equals(other.getUpTo())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasUpTo()) {
hash = (37 * hash) + UP_TO_FIELD_NUMBER;
hash = (53 * hash) + getUpTo().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count parseFrom(
byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count
parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count
parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Count of documents that match the query.
*
* The `COUNT(*)` aggregation function operates on the entire document
* so it does not require a field reference.
*
*
* Protobuf type {@code google.firestore.v1.StructuredAggregationQuery.Aggregation.Count}
*/
public static final class Builder
extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.firestore.v1.StructuredAggregationQuery.Aggregation.Count)
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.CountOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_Count_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_Count_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count.class,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count.Builder
.class);
}
// Construct using
// com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getUpToFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
upTo_ = null;
if (upToBuilder_ != null) {
upToBuilder_.dispose();
upToBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_Count_descriptor;
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count
getDefaultInstanceForType() {
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count
.getDefaultInstance();
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count build() {
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count result =
buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count buildPartial() {
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count result =
new com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.upTo_ = upToBuilder_ == null ? upTo_ : upToBuilder_.build();
to_bitField0_ |= 0x00000001;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index,
java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other
instanceof com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count) {
return mergeFrom(
(com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count other) {
if (other
== com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count
.getDefaultInstance()) return this;
if (other.hasUpTo()) {
mergeUpTo(other.getUpTo());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
input.readMessage(getUpToFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private com.google.protobuf.Int64Value upTo_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Int64Value,
com.google.protobuf.Int64Value.Builder,
com.google.protobuf.Int64ValueOrBuilder>
upToBuilder_;
/**
*
*
*
* Optional. Optional constraint on the maximum number of documents to
* count.
*
* This provides a way to set an upper bound on the number of documents
* to scan, limiting latency, and cost.
*
* Unspecified is interpreted as no bound.
*
* High-Level Example:
*
* ```
* AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
* ```
*
* Requires:
*
* * Must be greater than zero when present.
*
*
* .google.protobuf.Int64Value up_to = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return Whether the upTo field is set.
*/
public boolean hasUpTo() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* Optional. Optional constraint on the maximum number of documents to
* count.
*
* This provides a way to set an upper bound on the number of documents
* to scan, limiting latency, and cost.
*
* Unspecified is interpreted as no bound.
*
* High-Level Example:
*
* ```
* AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
* ```
*
* Requires:
*
* * Must be greater than zero when present.
*
*
* .google.protobuf.Int64Value up_to = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*
* @return The upTo.
*/
public com.google.protobuf.Int64Value getUpTo() {
if (upToBuilder_ == null) {
return upTo_ == null ? com.google.protobuf.Int64Value.getDefaultInstance() : upTo_;
} else {
return upToBuilder_.getMessage();
}
}
/**
*
*
*
* Optional. Optional constraint on the maximum number of documents to
* count.
*
* This provides a way to set an upper bound on the number of documents
* to scan, limiting latency, and cost.
*
* Unspecified is interpreted as no bound.
*
* High-Level Example:
*
* ```
* AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
* ```
*
* Requires:
*
* * Must be greater than zero when present.
*
*
* .google.protobuf.Int64Value up_to = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder setUpTo(com.google.protobuf.Int64Value value) {
if (upToBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
upTo_ = value;
} else {
upToBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Optional. Optional constraint on the maximum number of documents to
* count.
*
* This provides a way to set an upper bound on the number of documents
* to scan, limiting latency, and cost.
*
* Unspecified is interpreted as no bound.
*
* High-Level Example:
*
* ```
* AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
* ```
*
* Requires:
*
* * Must be greater than zero when present.
*
*
* .google.protobuf.Int64Value up_to = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder setUpTo(com.google.protobuf.Int64Value.Builder builderForValue) {
if (upToBuilder_ == null) {
upTo_ = builderForValue.build();
} else {
upToBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Optional. Optional constraint on the maximum number of documents to
* count.
*
* This provides a way to set an upper bound on the number of documents
* to scan, limiting latency, and cost.
*
* Unspecified is interpreted as no bound.
*
* High-Level Example:
*
* ```
* AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
* ```
*
* Requires:
*
* * Must be greater than zero when present.
*
*
* .google.protobuf.Int64Value up_to = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder mergeUpTo(com.google.protobuf.Int64Value value) {
if (upToBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)
&& upTo_ != null
&& upTo_ != com.google.protobuf.Int64Value.getDefaultInstance()) {
getUpToBuilder().mergeFrom(value);
} else {
upTo_ = value;
}
} else {
upToBuilder_.mergeFrom(value);
}
if (upTo_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
*
*
* Optional. Optional constraint on the maximum number of documents to
* count.
*
* This provides a way to set an upper bound on the number of documents
* to scan, limiting latency, and cost.
*
* Unspecified is interpreted as no bound.
*
* High-Level Example:
*
* ```
* AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
* ```
*
* Requires:
*
* * Must be greater than zero when present.
*
*
* .google.protobuf.Int64Value up_to = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder clearUpTo() {
bitField0_ = (bitField0_ & ~0x00000001);
upTo_ = null;
if (upToBuilder_ != null) {
upToBuilder_.dispose();
upToBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Optional. Optional constraint on the maximum number of documents to
* count.
*
* This provides a way to set an upper bound on the number of documents
* to scan, limiting latency, and cost.
*
* Unspecified is interpreted as no bound.
*
* High-Level Example:
*
* ```
* AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
* ```
*
* Requires:
*
* * Must be greater than zero when present.
*
*
* .google.protobuf.Int64Value up_to = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public com.google.protobuf.Int64Value.Builder getUpToBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getUpToFieldBuilder().getBuilder();
}
/**
*
*
*
* Optional. Optional constraint on the maximum number of documents to
* count.
*
* This provides a way to set an upper bound on the number of documents
* to scan, limiting latency, and cost.
*
* Unspecified is interpreted as no bound.
*
* High-Level Example:
*
* ```
* AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
* ```
*
* Requires:
*
* * Must be greater than zero when present.
*
*
* .google.protobuf.Int64Value up_to = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public com.google.protobuf.Int64ValueOrBuilder getUpToOrBuilder() {
if (upToBuilder_ != null) {
return upToBuilder_.getMessageOrBuilder();
} else {
return upTo_ == null ? com.google.protobuf.Int64Value.getDefaultInstance() : upTo_;
}
}
/**
*
*
*
* Optional. Optional constraint on the maximum number of documents to
* count.
*
* This provides a way to set an upper bound on the number of documents
* to scan, limiting latency, and cost.
*
* Unspecified is interpreted as no bound.
*
* High-Level Example:
*
* ```
* AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k );
* ```
*
* Requires:
*
* * Must be greater than zero when present.
*
*
* .google.protobuf.Int64Value up_to = 1 [(.google.api.field_behavior) = OPTIONAL];
*
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Int64Value,
com.google.protobuf.Int64Value.Builder,
com.google.protobuf.Int64ValueOrBuilder>
getUpToFieldBuilder() {
if (upToBuilder_ == null) {
upToBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Int64Value,
com.google.protobuf.Int64Value.Builder,
com.google.protobuf.Int64ValueOrBuilder>(
getUpTo(), getParentForChildren(), isClean());
upTo_ = null;
}
return upToBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.firestore.v1.StructuredAggregationQuery.Aggregation.Count)
}
// @@protoc_insertion_point(class_scope:google.firestore.v1.StructuredAggregationQuery.Aggregation.Count)
private static final com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count
DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE =
new com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count();
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count
getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Count parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException()
.setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count
getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface SumOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*
* @return Whether the field field is set.
*/
boolean hasField();
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*
* @return The field.
*/
com.google.firestore.v1.StructuredQuery.FieldReference getField();
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
com.google.firestore.v1.StructuredQuery.FieldReferenceOrBuilder getFieldOrBuilder();
}
/**
*
*
*
* Sum of the values of the requested field.
*
* * Only numeric values will be aggregated. All non-numeric values
* including `NULL` are skipped.
*
* * If the aggregated values contain `NaN`, returns `NaN`. Infinity math
* follows IEEE-754 standards.
*
* * If the aggregated value set is empty, returns 0.
*
* * Returns a 64-bit integer if all aggregated numbers are integers and the
* sum result does not overflow. Otherwise, the result is returned as a
* double. Note that even if all the aggregated values are integers, the
* result is returned as a double if it cannot fit within a 64-bit signed
* integer. When this occurs, the returned value will lose precision.
*
* * When underflow occurs, floating-point aggregation is non-deterministic.
* This means that running the same query repeatedly without any changes to
* the underlying values could produce slightly different results each
* time. In those cases, values should be stored as integers over
* floating-point numbers.
*
*
* Protobuf type {@code google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum}
*/
public static final class Sum extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum)
SumOrBuilder {
private static final long serialVersionUID = 0L;
// Use Sum.newBuilder() to construct.
private Sum(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Sum() {}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new Sum();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_Sum_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_Sum_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum.class,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum.Builder.class);
}
private int bitField0_;
public static final int FIELD_FIELD_NUMBER = 1;
private com.google.firestore.v1.StructuredQuery.FieldReference field_;
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*
* @return Whether the field field is set.
*/
@java.lang.Override
public boolean hasField() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*
* @return The field.
*/
@java.lang.Override
public com.google.firestore.v1.StructuredQuery.FieldReference getField() {
return field_ == null
? com.google.firestore.v1.StructuredQuery.FieldReference.getDefaultInstance()
: field_;
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
@java.lang.Override
public com.google.firestore.v1.StructuredQuery.FieldReferenceOrBuilder getFieldOrBuilder() {
return field_ == null
? com.google.firestore.v1.StructuredQuery.FieldReference.getDefaultInstance()
: field_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(1, getField());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getField());
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum)) {
return super.equals(obj);
}
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum other =
(com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum) obj;
if (hasField() != other.hasField()) return false;
if (hasField()) {
if (!getField().equals(other.getField())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasField()) {
hash = (37 * hash) + FIELD_FIELD_NUMBER;
hash = (53 * hash) + getField().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum parseFrom(
byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum
parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum
parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Sum of the values of the requested field.
*
* * Only numeric values will be aggregated. All non-numeric values
* including `NULL` are skipped.
*
* * If the aggregated values contain `NaN`, returns `NaN`. Infinity math
* follows IEEE-754 standards.
*
* * If the aggregated value set is empty, returns 0.
*
* * Returns a 64-bit integer if all aggregated numbers are integers and the
* sum result does not overflow. Otherwise, the result is returned as a
* double. Note that even if all the aggregated values are integers, the
* result is returned as a double if it cannot fit within a 64-bit signed
* integer. When this occurs, the returned value will lose precision.
*
* * When underflow occurs, floating-point aggregation is non-deterministic.
* This means that running the same query repeatedly without any changes to
* the underlying values could produce slightly different results each
* time. In those cases, values should be stored as integers over
* floating-point numbers.
*
*
* Protobuf type {@code google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum}
*/
public static final class Builder
extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum)
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.SumOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_Sum_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_Sum_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum.class,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum.Builder.class);
}
// Construct using
// com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getFieldFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
field_ = null;
if (fieldBuilder_ != null) {
fieldBuilder_.dispose();
fieldBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_Sum_descriptor;
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum
getDefaultInstanceForType() {
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum
.getDefaultInstance();
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum build() {
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum result =
buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum buildPartial() {
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum result =
new com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.field_ = fieldBuilder_ == null ? field_ : fieldBuilder_.build();
to_bitField0_ |= 0x00000001;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index,
java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum) {
return mergeFrom(
(com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum other) {
if (other
== com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum
.getDefaultInstance()) return this;
if (other.hasField()) {
mergeField(other.getField());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
input.readMessage(getFieldFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private com.google.firestore.v1.StructuredQuery.FieldReference field_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredQuery.FieldReference,
com.google.firestore.v1.StructuredQuery.FieldReference.Builder,
com.google.firestore.v1.StructuredQuery.FieldReferenceOrBuilder>
fieldBuilder_;
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*
* @return Whether the field field is set.
*/
public boolean hasField() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*
* @return The field.
*/
public com.google.firestore.v1.StructuredQuery.FieldReference getField() {
if (fieldBuilder_ == null) {
return field_ == null
? com.google.firestore.v1.StructuredQuery.FieldReference.getDefaultInstance()
: field_;
} else {
return fieldBuilder_.getMessage();
}
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
public Builder setField(com.google.firestore.v1.StructuredQuery.FieldReference value) {
if (fieldBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
field_ = value;
} else {
fieldBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
public Builder setField(
com.google.firestore.v1.StructuredQuery.FieldReference.Builder builderForValue) {
if (fieldBuilder_ == null) {
field_ = builderForValue.build();
} else {
fieldBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
public Builder mergeField(com.google.firestore.v1.StructuredQuery.FieldReference value) {
if (fieldBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)
&& field_ != null
&& field_
!= com.google.firestore.v1.StructuredQuery.FieldReference
.getDefaultInstance()) {
getFieldBuilder().mergeFrom(value);
} else {
field_ = value;
}
} else {
fieldBuilder_.mergeFrom(value);
}
if (field_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
public Builder clearField() {
bitField0_ = (bitField0_ & ~0x00000001);
field_ = null;
if (fieldBuilder_ != null) {
fieldBuilder_.dispose();
fieldBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
public com.google.firestore.v1.StructuredQuery.FieldReference.Builder getFieldBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getFieldFieldBuilder().getBuilder();
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
public com.google.firestore.v1.StructuredQuery.FieldReferenceOrBuilder getFieldOrBuilder() {
if (fieldBuilder_ != null) {
return fieldBuilder_.getMessageOrBuilder();
} else {
return field_ == null
? com.google.firestore.v1.StructuredQuery.FieldReference.getDefaultInstance()
: field_;
}
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredQuery.FieldReference,
com.google.firestore.v1.StructuredQuery.FieldReference.Builder,
com.google.firestore.v1.StructuredQuery.FieldReferenceOrBuilder>
getFieldFieldBuilder() {
if (fieldBuilder_ == null) {
fieldBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredQuery.FieldReference,
com.google.firestore.v1.StructuredQuery.FieldReference.Builder,
com.google.firestore.v1.StructuredQuery.FieldReferenceOrBuilder>(
getField(), getParentForChildren(), isClean());
field_ = null;
}
return fieldBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum)
}
// @@protoc_insertion_point(class_scope:google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum)
private static final com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum
DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum();
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum
getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Sum parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException()
.setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum
getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
public interface AvgOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*
* @return Whether the field field is set.
*/
boolean hasField();
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*
* @return The field.
*/
com.google.firestore.v1.StructuredQuery.FieldReference getField();
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
com.google.firestore.v1.StructuredQuery.FieldReferenceOrBuilder getFieldOrBuilder();
}
/**
*
*
*
* Average of the values of the requested field.
*
* * Only numeric values will be aggregated. All non-numeric values
* including `NULL` are skipped.
*
* * If the aggregated values contain `NaN`, returns `NaN`. Infinity math
* follows IEEE-754 standards.
*
* * If the aggregated value set is empty, returns `NULL`.
*
* * Always returns the result as a double.
*
*
* Protobuf type {@code google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg}
*/
public static final class Avg extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg)
AvgOrBuilder {
private static final long serialVersionUID = 0L;
// Use Avg.newBuilder() to construct.
private Avg(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Avg() {}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new Avg();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_Avg_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_Avg_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg.class,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg.Builder.class);
}
private int bitField0_;
public static final int FIELD_FIELD_NUMBER = 1;
private com.google.firestore.v1.StructuredQuery.FieldReference field_;
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*
* @return Whether the field field is set.
*/
@java.lang.Override
public boolean hasField() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*
* @return The field.
*/
@java.lang.Override
public com.google.firestore.v1.StructuredQuery.FieldReference getField() {
return field_ == null
? com.google.firestore.v1.StructuredQuery.FieldReference.getDefaultInstance()
: field_;
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
@java.lang.Override
public com.google.firestore.v1.StructuredQuery.FieldReferenceOrBuilder getFieldOrBuilder() {
return field_ == null
? com.google.firestore.v1.StructuredQuery.FieldReference.getDefaultInstance()
: field_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(1, getField());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getField());
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg)) {
return super.equals(obj);
}
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg other =
(com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg) obj;
if (hasField() != other.hasField()) return false;
if (hasField()) {
if (!getField().equals(other.getField())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasField()) {
hash = (37 * hash) + FIELD_FIELD_NUMBER;
hash = (53 * hash) + getField().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg parseFrom(
byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg
parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg
parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Average of the values of the requested field.
*
* * Only numeric values will be aggregated. All non-numeric values
* including `NULL` are skipped.
*
* * If the aggregated values contain `NaN`, returns `NaN`. Infinity math
* follows IEEE-754 standards.
*
* * If the aggregated value set is empty, returns `NULL`.
*
* * Always returns the result as a double.
*
*
* Protobuf type {@code google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg}
*/
public static final class Builder
extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg)
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.AvgOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_Avg_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_Avg_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg.class,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg.Builder.class);
}
// Construct using
// com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getFieldFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
field_ = null;
if (fieldBuilder_ != null) {
fieldBuilder_.dispose();
fieldBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_Avg_descriptor;
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg
getDefaultInstanceForType() {
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg
.getDefaultInstance();
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg build() {
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg result =
buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg buildPartial() {
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg result =
new com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.field_ = fieldBuilder_ == null ? field_ : fieldBuilder_.build();
to_bitField0_ |= 0x00000001;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index,
java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg) {
return mergeFrom(
(com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg other) {
if (other
== com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg
.getDefaultInstance()) return this;
if (other.hasField()) {
mergeField(other.getField());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
input.readMessage(getFieldFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private com.google.firestore.v1.StructuredQuery.FieldReference field_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredQuery.FieldReference,
com.google.firestore.v1.StructuredQuery.FieldReference.Builder,
com.google.firestore.v1.StructuredQuery.FieldReferenceOrBuilder>
fieldBuilder_;
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*
* @return Whether the field field is set.
*/
public boolean hasField() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*
* @return The field.
*/
public com.google.firestore.v1.StructuredQuery.FieldReference getField() {
if (fieldBuilder_ == null) {
return field_ == null
? com.google.firestore.v1.StructuredQuery.FieldReference.getDefaultInstance()
: field_;
} else {
return fieldBuilder_.getMessage();
}
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
public Builder setField(com.google.firestore.v1.StructuredQuery.FieldReference value) {
if (fieldBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
field_ = value;
} else {
fieldBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
public Builder setField(
com.google.firestore.v1.StructuredQuery.FieldReference.Builder builderForValue) {
if (fieldBuilder_ == null) {
field_ = builderForValue.build();
} else {
fieldBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
public Builder mergeField(com.google.firestore.v1.StructuredQuery.FieldReference value) {
if (fieldBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)
&& field_ != null
&& field_
!= com.google.firestore.v1.StructuredQuery.FieldReference
.getDefaultInstance()) {
getFieldBuilder().mergeFrom(value);
} else {
field_ = value;
}
} else {
fieldBuilder_.mergeFrom(value);
}
if (field_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
public Builder clearField() {
bitField0_ = (bitField0_ & ~0x00000001);
field_ = null;
if (fieldBuilder_ != null) {
fieldBuilder_.dispose();
fieldBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
public com.google.firestore.v1.StructuredQuery.FieldReference.Builder getFieldBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getFieldFieldBuilder().getBuilder();
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
public com.google.firestore.v1.StructuredQuery.FieldReferenceOrBuilder getFieldOrBuilder() {
if (fieldBuilder_ != null) {
return fieldBuilder_.getMessageOrBuilder();
} else {
return field_ == null
? com.google.firestore.v1.StructuredQuery.FieldReference.getDefaultInstance()
: field_;
}
}
/**
*
*
*
* The field to aggregate on.
*
*
* .google.firestore.v1.StructuredQuery.FieldReference field = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredQuery.FieldReference,
com.google.firestore.v1.StructuredQuery.FieldReference.Builder,
com.google.firestore.v1.StructuredQuery.FieldReferenceOrBuilder>
getFieldFieldBuilder() {
if (fieldBuilder_ == null) {
fieldBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredQuery.FieldReference,
com.google.firestore.v1.StructuredQuery.FieldReference.Builder,
com.google.firestore.v1.StructuredQuery.FieldReferenceOrBuilder>(
getField(), getParentForChildren(), isClean());
field_ = null;
}
return fieldBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg)
}
// @@protoc_insertion_point(class_scope:google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg)
private static final com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg
DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg();
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg
getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Avg parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException()
.setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg
getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private int operatorCase_ = 0;
@SuppressWarnings("serial")
private java.lang.Object operator_;
public enum OperatorCase
implements
com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
COUNT(1),
SUM(2),
AVG(3),
OPERATOR_NOT_SET(0);
private final int value;
private OperatorCase(int value) {
this.value = value;
}
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static OperatorCase valueOf(int value) {
return forNumber(value);
}
public static OperatorCase forNumber(int value) {
switch (value) {
case 1:
return COUNT;
case 2:
return SUM;
case 3:
return AVG;
case 0:
return OPERATOR_NOT_SET;
default:
return null;
}
}
public int getNumber() {
return this.value;
}
};
public OperatorCase getOperatorCase() {
return OperatorCase.forNumber(operatorCase_);
}
public static final int COUNT_FIELD_NUMBER = 1;
/**
*
*
*
* Count aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Count count = 1;
*
* @return Whether the count field is set.
*/
@java.lang.Override
public boolean hasCount() {
return operatorCase_ == 1;
}
/**
*
*
*
* Count aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Count count = 1;
*
* @return The count.
*/
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count getCount() {
if (operatorCase_ == 1) {
return (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count) operator_;
}
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count
.getDefaultInstance();
}
/**
*
*
*
* Count aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Count count = 1;
*/
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.CountOrBuilder
getCountOrBuilder() {
if (operatorCase_ == 1) {
return (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count) operator_;
}
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count
.getDefaultInstance();
}
public static final int SUM_FIELD_NUMBER = 2;
/**
*
*
*
* Sum aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum sum = 2;
*
* @return Whether the sum field is set.
*/
@java.lang.Override
public boolean hasSum() {
return operatorCase_ == 2;
}
/**
*
*
*
* Sum aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum sum = 2;
*
* @return The sum.
*/
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum getSum() {
if (operatorCase_ == 2) {
return (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum) operator_;
}
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum
.getDefaultInstance();
}
/**
*
*
*
* Sum aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum sum = 2;
*/
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.SumOrBuilder
getSumOrBuilder() {
if (operatorCase_ == 2) {
return (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum) operator_;
}
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum
.getDefaultInstance();
}
public static final int AVG_FIELD_NUMBER = 3;
/**
*
*
*
* Average aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg avg = 3;
*
* @return Whether the avg field is set.
*/
@java.lang.Override
public boolean hasAvg() {
return operatorCase_ == 3;
}
/**
*
*
*
* Average aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg avg = 3;
*
* @return The avg.
*/
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg getAvg() {
if (operatorCase_ == 3) {
return (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg) operator_;
}
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg
.getDefaultInstance();
}
/**
*
*
*
* Average aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg avg = 3;
*/
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.AvgOrBuilder
getAvgOrBuilder() {
if (operatorCase_ == 3) {
return (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg) operator_;
}
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg
.getDefaultInstance();
}
public static final int ALIAS_FIELD_NUMBER = 7;
@SuppressWarnings("serial")
private volatile java.lang.Object alias_ = "";
/**
*
*
*
* Optional. Optional name of the field to store the result of the
* aggregation into.
*
* If not provided, Firestore will pick a default name following the format
* `field_<incremental_id++>`. For example:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2),
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*)
* OVER (
* ...
* );
* ```
*
* becomes:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2) AS field_1,
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*) AS field_2
* OVER (
* ...
* );
* ```
*
* Requires:
*
* * Must be unique across all aggregation aliases.
* * Conform to [document field name][google.firestore.v1.Document.fields]
* limitations.
*
*
* string alias = 7 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The alias.
*/
@java.lang.Override
public java.lang.String getAlias() {
java.lang.Object ref = alias_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
alias_ = s;
return s;
}
}
/**
*
*
*
* Optional. Optional name of the field to store the result of the
* aggregation into.
*
* If not provided, Firestore will pick a default name following the format
* `field_<incremental_id++>`. For example:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2),
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*)
* OVER (
* ...
* );
* ```
*
* becomes:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2) AS field_1,
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*) AS field_2
* OVER (
* ...
* );
* ```
*
* Requires:
*
* * Must be unique across all aggregation aliases.
* * Conform to [document field name][google.firestore.v1.Document.fields]
* limitations.
*
*
* string alias = 7 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for alias.
*/
@java.lang.Override
public com.google.protobuf.ByteString getAliasBytes() {
java.lang.Object ref = alias_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
alias_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (operatorCase_ == 1) {
output.writeMessage(
1, (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count) operator_);
}
if (operatorCase_ == 2) {
output.writeMessage(
2, (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum) operator_);
}
if (operatorCase_ == 3) {
output.writeMessage(
3, (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg) operator_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(alias_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 7, alias_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (operatorCase_ == 1) {
size +=
com.google.protobuf.CodedOutputStream.computeMessageSize(
1,
(com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count) operator_);
}
if (operatorCase_ == 2) {
size +=
com.google.protobuf.CodedOutputStream.computeMessageSize(
2, (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum) operator_);
}
if (operatorCase_ == 3) {
size +=
com.google.protobuf.CodedOutputStream.computeMessageSize(
3, (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg) operator_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(alias_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, alias_);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.firestore.v1.StructuredAggregationQuery.Aggregation)) {
return super.equals(obj);
}
com.google.firestore.v1.StructuredAggregationQuery.Aggregation other =
(com.google.firestore.v1.StructuredAggregationQuery.Aggregation) obj;
if (!getAlias().equals(other.getAlias())) return false;
if (!getOperatorCase().equals(other.getOperatorCase())) return false;
switch (operatorCase_) {
case 1:
if (!getCount().equals(other.getCount())) return false;
break;
case 2:
if (!getSum().equals(other.getSum())) return false;
break;
case 3:
if (!getAvg().equals(other.getAvg())) return false;
break;
case 0:
default:
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + ALIAS_FIELD_NUMBER;
hash = (53 * hash) + getAlias().hashCode();
switch (operatorCase_) {
case 1:
hash = (37 * hash) + COUNT_FIELD_NUMBER;
hash = (53 * hash) + getCount().hashCode();
break;
case 2:
hash = (37 * hash) + SUM_FIELD_NUMBER;
hash = (53 * hash) + getSum().hashCode();
break;
case 3:
hash = (37 * hash) + AVG_FIELD_NUMBER;
hash = (53 * hash) + getAvg().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation parseFrom(
byte[] data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation parseDelimitedFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Defines an aggregation that produces a single result.
*
*
* Protobuf type {@code google.firestore.v1.StructuredAggregationQuery.Aggregation}
*/
public static final class Builder
extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.firestore.v1.StructuredAggregationQuery.Aggregation)
com.google.firestore.v1.StructuredAggregationQuery.AggregationOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.class,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Builder.class);
}
// Construct using com.google.firestore.v1.StructuredAggregationQuery.Aggregation.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
if (countBuilder_ != null) {
countBuilder_.clear();
}
if (sumBuilder_ != null) {
sumBuilder_.clear();
}
if (avgBuilder_ != null) {
avgBuilder_.clear();
}
alias_ = "";
operatorCase_ = 0;
operator_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_Aggregation_descriptor;
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation
getDefaultInstanceForType() {
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.getDefaultInstance();
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation build() {
com.google.firestore.v1.StructuredAggregationQuery.Aggregation result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation buildPartial() {
com.google.firestore.v1.StructuredAggregationQuery.Aggregation result =
new com.google.firestore.v1.StructuredAggregationQuery.Aggregation(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
buildPartialOneofs(result);
onBuilt();
return result;
}
private void buildPartial0(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000008) != 0)) {
result.alias_ = alias_;
}
}
private void buildPartialOneofs(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation result) {
result.operatorCase_ = operatorCase_;
result.operator_ = this.operator_;
if (operatorCase_ == 1 && countBuilder_ != null) {
result.operator_ = countBuilder_.build();
}
if (operatorCase_ == 2 && sumBuilder_ != null) {
result.operator_ = sumBuilder_.build();
}
if (operatorCase_ == 3 && avgBuilder_ != null) {
result.operator_ = avgBuilder_.build();
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index,
java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.firestore.v1.StructuredAggregationQuery.Aggregation) {
return mergeFrom((com.google.firestore.v1.StructuredAggregationQuery.Aggregation) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation other) {
if (other
== com.google.firestore.v1.StructuredAggregationQuery.Aggregation.getDefaultInstance())
return this;
if (!other.getAlias().isEmpty()) {
alias_ = other.alias_;
bitField0_ |= 0x00000008;
onChanged();
}
switch (other.getOperatorCase()) {
case COUNT:
{
mergeCount(other.getCount());
break;
}
case SUM:
{
mergeSum(other.getSum());
break;
}
case AVG:
{
mergeAvg(other.getAvg());
break;
}
case OPERATOR_NOT_SET:
{
break;
}
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
input.readMessage(getCountFieldBuilder().getBuilder(), extensionRegistry);
operatorCase_ = 1;
break;
} // case 10
case 18:
{
input.readMessage(getSumFieldBuilder().getBuilder(), extensionRegistry);
operatorCase_ = 2;
break;
} // case 18
case 26:
{
input.readMessage(getAvgFieldBuilder().getBuilder(), extensionRegistry);
operatorCase_ = 3;
break;
} // case 26
case 58:
{
alias_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000008;
break;
} // case 58
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int operatorCase_ = 0;
private java.lang.Object operator_;
public OperatorCase getOperatorCase() {
return OperatorCase.forNumber(operatorCase_);
}
public Builder clearOperator() {
operatorCase_ = 0;
operator_ = null;
onChanged();
return this;
}
private int bitField0_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count.Builder,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.CountOrBuilder>
countBuilder_;
/**
*
*
*
* Count aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Count count = 1;
*
* @return Whether the count field is set.
*/
@java.lang.Override
public boolean hasCount() {
return operatorCase_ == 1;
}
/**
*
*
*
* Count aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Count count = 1;
*
* @return The count.
*/
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count getCount() {
if (countBuilder_ == null) {
if (operatorCase_ == 1) {
return (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count) operator_;
}
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count
.getDefaultInstance();
} else {
if (operatorCase_ == 1) {
return countBuilder_.getMessage();
}
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count
.getDefaultInstance();
}
}
/**
*
*
*
* Count aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Count count = 1;
*/
public Builder setCount(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count value) {
if (countBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
operator_ = value;
onChanged();
} else {
countBuilder_.setMessage(value);
}
operatorCase_ = 1;
return this;
}
/**
*
*
*
* Count aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Count count = 1;
*/
public Builder setCount(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count.Builder
builderForValue) {
if (countBuilder_ == null) {
operator_ = builderForValue.build();
onChanged();
} else {
countBuilder_.setMessage(builderForValue.build());
}
operatorCase_ = 1;
return this;
}
/**
*
*
*
* Count aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Count count = 1;
*/
public Builder mergeCount(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count value) {
if (countBuilder_ == null) {
if (operatorCase_ == 1
&& operator_
!= com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count
.getDefaultInstance()) {
operator_ =
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count.newBuilder(
(com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count)
operator_)
.mergeFrom(value)
.buildPartial();
} else {
operator_ = value;
}
onChanged();
} else {
if (operatorCase_ == 1) {
countBuilder_.mergeFrom(value);
} else {
countBuilder_.setMessage(value);
}
}
operatorCase_ = 1;
return this;
}
/**
*
*
*
* Count aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Count count = 1;
*/
public Builder clearCount() {
if (countBuilder_ == null) {
if (operatorCase_ == 1) {
operatorCase_ = 0;
operator_ = null;
onChanged();
}
} else {
if (operatorCase_ == 1) {
operatorCase_ = 0;
operator_ = null;
}
countBuilder_.clear();
}
return this;
}
/**
*
*
*
* Count aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Count count = 1;
*/
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count.Builder
getCountBuilder() {
return getCountFieldBuilder().getBuilder();
}
/**
*
*
*
* Count aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Count count = 1;
*/
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.CountOrBuilder
getCountOrBuilder() {
if ((operatorCase_ == 1) && (countBuilder_ != null)) {
return countBuilder_.getMessageOrBuilder();
} else {
if (operatorCase_ == 1) {
return (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count) operator_;
}
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count
.getDefaultInstance();
}
}
/**
*
*
*
* Count aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Count count = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count.Builder,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.CountOrBuilder>
getCountFieldBuilder() {
if (countBuilder_ == null) {
if (!(operatorCase_ == 1)) {
operator_ =
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count
.getDefaultInstance();
}
countBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count.Builder,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.CountOrBuilder>(
(com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Count) operator_,
getParentForChildren(),
isClean());
operator_ = null;
}
operatorCase_ = 1;
onChanged();
return countBuilder_;
}
private com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum.Builder,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.SumOrBuilder>
sumBuilder_;
/**
*
*
*
* Sum aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum sum = 2;
*
* @return Whether the sum field is set.
*/
@java.lang.Override
public boolean hasSum() {
return operatorCase_ == 2;
}
/**
*
*
*
* Sum aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum sum = 2;
*
* @return The sum.
*/
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum getSum() {
if (sumBuilder_ == null) {
if (operatorCase_ == 2) {
return (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum) operator_;
}
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum
.getDefaultInstance();
} else {
if (operatorCase_ == 2) {
return sumBuilder_.getMessage();
}
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum
.getDefaultInstance();
}
}
/**
*
*
*
* Sum aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum sum = 2;
*/
public Builder setSum(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum value) {
if (sumBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
operator_ = value;
onChanged();
} else {
sumBuilder_.setMessage(value);
}
operatorCase_ = 2;
return this;
}
/**
*
*
*
* Sum aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum sum = 2;
*/
public Builder setSum(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum.Builder
builderForValue) {
if (sumBuilder_ == null) {
operator_ = builderForValue.build();
onChanged();
} else {
sumBuilder_.setMessage(builderForValue.build());
}
operatorCase_ = 2;
return this;
}
/**
*
*
*
* Sum aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum sum = 2;
*/
public Builder mergeSum(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum value) {
if (sumBuilder_ == null) {
if (operatorCase_ == 2
&& operator_
!= com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum
.getDefaultInstance()) {
operator_ =
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum.newBuilder(
(com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum)
operator_)
.mergeFrom(value)
.buildPartial();
} else {
operator_ = value;
}
onChanged();
} else {
if (operatorCase_ == 2) {
sumBuilder_.mergeFrom(value);
} else {
sumBuilder_.setMessage(value);
}
}
operatorCase_ = 2;
return this;
}
/**
*
*
*
* Sum aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum sum = 2;
*/
public Builder clearSum() {
if (sumBuilder_ == null) {
if (operatorCase_ == 2) {
operatorCase_ = 0;
operator_ = null;
onChanged();
}
} else {
if (operatorCase_ == 2) {
operatorCase_ = 0;
operator_ = null;
}
sumBuilder_.clear();
}
return this;
}
/**
*
*
*
* Sum aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum sum = 2;
*/
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum.Builder
getSumBuilder() {
return getSumFieldBuilder().getBuilder();
}
/**
*
*
*
* Sum aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum sum = 2;
*/
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.SumOrBuilder
getSumOrBuilder() {
if ((operatorCase_ == 2) && (sumBuilder_ != null)) {
return sumBuilder_.getMessageOrBuilder();
} else {
if (operatorCase_ == 2) {
return (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum) operator_;
}
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum
.getDefaultInstance();
}
}
/**
*
*
*
* Sum aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum sum = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum.Builder,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.SumOrBuilder>
getSumFieldBuilder() {
if (sumBuilder_ == null) {
if (!(operatorCase_ == 2)) {
operator_ =
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum
.getDefaultInstance();
}
sumBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum.Builder,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.SumOrBuilder>(
(com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Sum) operator_,
getParentForChildren(),
isClean());
operator_ = null;
}
operatorCase_ = 2;
onChanged();
return sumBuilder_;
}
private com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg.Builder,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.AvgOrBuilder>
avgBuilder_;
/**
*
*
*
* Average aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg avg = 3;
*
* @return Whether the avg field is set.
*/
@java.lang.Override
public boolean hasAvg() {
return operatorCase_ == 3;
}
/**
*
*
*
* Average aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg avg = 3;
*
* @return The avg.
*/
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg getAvg() {
if (avgBuilder_ == null) {
if (operatorCase_ == 3) {
return (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg) operator_;
}
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg
.getDefaultInstance();
} else {
if (operatorCase_ == 3) {
return avgBuilder_.getMessage();
}
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg
.getDefaultInstance();
}
}
/**
*
*
*
* Average aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg avg = 3;
*/
public Builder setAvg(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg value) {
if (avgBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
operator_ = value;
onChanged();
} else {
avgBuilder_.setMessage(value);
}
operatorCase_ = 3;
return this;
}
/**
*
*
*
* Average aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg avg = 3;
*/
public Builder setAvg(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg.Builder
builderForValue) {
if (avgBuilder_ == null) {
operator_ = builderForValue.build();
onChanged();
} else {
avgBuilder_.setMessage(builderForValue.build());
}
operatorCase_ = 3;
return this;
}
/**
*
*
*
* Average aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg avg = 3;
*/
public Builder mergeAvg(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg value) {
if (avgBuilder_ == null) {
if (operatorCase_ == 3
&& operator_
!= com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg
.getDefaultInstance()) {
operator_ =
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg.newBuilder(
(com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg)
operator_)
.mergeFrom(value)
.buildPartial();
} else {
operator_ = value;
}
onChanged();
} else {
if (operatorCase_ == 3) {
avgBuilder_.mergeFrom(value);
} else {
avgBuilder_.setMessage(value);
}
}
operatorCase_ = 3;
return this;
}
/**
*
*
*
* Average aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg avg = 3;
*/
public Builder clearAvg() {
if (avgBuilder_ == null) {
if (operatorCase_ == 3) {
operatorCase_ = 0;
operator_ = null;
onChanged();
}
} else {
if (operatorCase_ == 3) {
operatorCase_ = 0;
operator_ = null;
}
avgBuilder_.clear();
}
return this;
}
/**
*
*
*
* Average aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg avg = 3;
*/
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg.Builder
getAvgBuilder() {
return getAvgFieldBuilder().getBuilder();
}
/**
*
*
*
* Average aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg avg = 3;
*/
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.AvgOrBuilder
getAvgOrBuilder() {
if ((operatorCase_ == 3) && (avgBuilder_ != null)) {
return avgBuilder_.getMessageOrBuilder();
} else {
if (operatorCase_ == 3) {
return (com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg) operator_;
}
return com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg
.getDefaultInstance();
}
}
/**
*
*
*
* Average aggregator.
*
*
* .google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg avg = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg.Builder,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.AvgOrBuilder>
getAvgFieldBuilder() {
if (avgBuilder_ == null) {
if (!(operatorCase_ == 3)) {
operator_ =
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg
.getDefaultInstance();
}
avgBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg.Builder,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.AvgOrBuilder>(
(com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Avg) operator_,
getParentForChildren(),
isClean());
operator_ = null;
}
operatorCase_ = 3;
onChanged();
return avgBuilder_;
}
private java.lang.Object alias_ = "";
/**
*
*
*
* Optional. Optional name of the field to store the result of the
* aggregation into.
*
* If not provided, Firestore will pick a default name following the format
* `field_<incremental_id++>`. For example:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2),
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*)
* OVER (
* ...
* );
* ```
*
* becomes:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2) AS field_1,
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*) AS field_2
* OVER (
* ...
* );
* ```
*
* Requires:
*
* * Must be unique across all aggregation aliases.
* * Conform to [document field name][google.firestore.v1.Document.fields]
* limitations.
*
*
* string alias = 7 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The alias.
*/
public java.lang.String getAlias() {
java.lang.Object ref = alias_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
alias_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Optional. Optional name of the field to store the result of the
* aggregation into.
*
* If not provided, Firestore will pick a default name following the format
* `field_<incremental_id++>`. For example:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2),
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*)
* OVER (
* ...
* );
* ```
*
* becomes:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2) AS field_1,
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*) AS field_2
* OVER (
* ...
* );
* ```
*
* Requires:
*
* * Must be unique across all aggregation aliases.
* * Conform to [document field name][google.firestore.v1.Document.fields]
* limitations.
*
*
* string alias = 7 [(.google.api.field_behavior) = OPTIONAL];
*
* @return The bytes for alias.
*/
public com.google.protobuf.ByteString getAliasBytes() {
java.lang.Object ref = alias_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
alias_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Optional. Optional name of the field to store the result of the
* aggregation into.
*
* If not provided, Firestore will pick a default name following the format
* `field_<incremental_id++>`. For example:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2),
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*)
* OVER (
* ...
* );
* ```
*
* becomes:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2) AS field_1,
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*) AS field_2
* OVER (
* ...
* );
* ```
*
* Requires:
*
* * Must be unique across all aggregation aliases.
* * Conform to [document field name][google.firestore.v1.Document.fields]
* limitations.
*
*
* string alias = 7 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The alias to set.
* @return This builder for chaining.
*/
public Builder setAlias(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
alias_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* Optional. Optional name of the field to store the result of the
* aggregation into.
*
* If not provided, Firestore will pick a default name following the format
* `field_<incremental_id++>`. For example:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2),
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*)
* OVER (
* ...
* );
* ```
*
* becomes:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2) AS field_1,
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*) AS field_2
* OVER (
* ...
* );
* ```
*
* Requires:
*
* * Must be unique across all aggregation aliases.
* * Conform to [document field name][google.firestore.v1.Document.fields]
* limitations.
*
*
* string alias = 7 [(.google.api.field_behavior) = OPTIONAL];
*
* @return This builder for chaining.
*/
public Builder clearAlias() {
alias_ = getDefaultInstance().getAlias();
bitField0_ = (bitField0_ & ~0x00000008);
onChanged();
return this;
}
/**
*
*
*
* Optional. Optional name of the field to store the result of the
* aggregation into.
*
* If not provided, Firestore will pick a default name following the format
* `field_<incremental_id++>`. For example:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2),
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*)
* OVER (
* ...
* );
* ```
*
* becomes:
*
* ```
* AGGREGATE
* COUNT_UP_TO(1) AS count_up_to_1,
* COUNT_UP_TO(2) AS field_1,
* COUNT_UP_TO(3) AS count_up_to_3,
* COUNT(*) AS field_2
* OVER (
* ...
* );
* ```
*
* Requires:
*
* * Must be unique across all aggregation aliases.
* * Conform to [document field name][google.firestore.v1.Document.fields]
* limitations.
*
*
* string alias = 7 [(.google.api.field_behavior) = OPTIONAL];
*
* @param value The bytes for alias to set.
* @return This builder for chaining.
*/
public Builder setAliasBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
alias_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.firestore.v1.StructuredAggregationQuery.Aggregation)
}
// @@protoc_insertion_point(class_scope:google.firestore.v1.StructuredAggregationQuery.Aggregation)
private static final com.google.firestore.v1.StructuredAggregationQuery.Aggregation
DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.firestore.v1.StructuredAggregationQuery.Aggregation();
}
public static com.google.firestore.v1.StructuredAggregationQuery.Aggregation
getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Aggregation parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException()
.setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation
getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private int queryTypeCase_ = 0;
@SuppressWarnings("serial")
private java.lang.Object queryType_;
public enum QueryTypeCase
implements
com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
STRUCTURED_QUERY(1),
QUERYTYPE_NOT_SET(0);
private final int value;
private QueryTypeCase(int value) {
this.value = value;
}
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static QueryTypeCase valueOf(int value) {
return forNumber(value);
}
public static QueryTypeCase forNumber(int value) {
switch (value) {
case 1:
return STRUCTURED_QUERY;
case 0:
return QUERYTYPE_NOT_SET;
default:
return null;
}
}
public int getNumber() {
return this.value;
}
};
public QueryTypeCase getQueryTypeCase() {
return QueryTypeCase.forNumber(queryTypeCase_);
}
public static final int STRUCTURED_QUERY_FIELD_NUMBER = 1;
/**
*
*
*
* Nested structured query.
*
*
* .google.firestore.v1.StructuredQuery structured_query = 1;
*
* @return Whether the structuredQuery field is set.
*/
@java.lang.Override
public boolean hasStructuredQuery() {
return queryTypeCase_ == 1;
}
/**
*
*
*
* Nested structured query.
*
*
* .google.firestore.v1.StructuredQuery structured_query = 1;
*
* @return The structuredQuery.
*/
@java.lang.Override
public com.google.firestore.v1.StructuredQuery getStructuredQuery() {
if (queryTypeCase_ == 1) {
return (com.google.firestore.v1.StructuredQuery) queryType_;
}
return com.google.firestore.v1.StructuredQuery.getDefaultInstance();
}
/**
*
*
*
* Nested structured query.
*
*
* .google.firestore.v1.StructuredQuery structured_query = 1;
*/
@java.lang.Override
public com.google.firestore.v1.StructuredQueryOrBuilder getStructuredQueryOrBuilder() {
if (queryTypeCase_ == 1) {
return (com.google.firestore.v1.StructuredQuery) queryType_;
}
return com.google.firestore.v1.StructuredQuery.getDefaultInstance();
}
public static final int AGGREGATIONS_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private java.util.List
aggregations_;
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
@java.lang.Override
public java.util.List
getAggregationsList() {
return aggregations_;
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
@java.lang.Override
public java.util.List<
? extends com.google.firestore.v1.StructuredAggregationQuery.AggregationOrBuilder>
getAggregationsOrBuilderList() {
return aggregations_;
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
@java.lang.Override
public int getAggregationsCount() {
return aggregations_.size();
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation getAggregations(int index) {
return aggregations_.get(index);
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery.AggregationOrBuilder
getAggregationsOrBuilder(int index) {
return aggregations_.get(index);
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (queryTypeCase_ == 1) {
output.writeMessage(1, (com.google.firestore.v1.StructuredQuery) queryType_);
}
for (int i = 0; i < aggregations_.size(); i++) {
output.writeMessage(3, aggregations_.get(i));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (queryTypeCase_ == 1) {
size +=
com.google.protobuf.CodedOutputStream.computeMessageSize(
1, (com.google.firestore.v1.StructuredQuery) queryType_);
}
for (int i = 0; i < aggregations_.size(); i++) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, aggregations_.get(i));
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.firestore.v1.StructuredAggregationQuery)) {
return super.equals(obj);
}
com.google.firestore.v1.StructuredAggregationQuery other =
(com.google.firestore.v1.StructuredAggregationQuery) obj;
if (!getAggregationsList().equals(other.getAggregationsList())) return false;
if (!getQueryTypeCase().equals(other.getQueryTypeCase())) return false;
switch (queryTypeCase_) {
case 1:
if (!getStructuredQuery().equals(other.getStructuredQuery())) return false;
break;
case 0:
default:
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (getAggregationsCount() > 0) {
hash = (37 * hash) + AGGREGATIONS_FIELD_NUMBER;
hash = (53 * hash) + getAggregationsList().hashCode();
}
switch (queryTypeCase_) {
case 1:
hash = (37 * hash) + STRUCTURED_QUERY_FIELD_NUMBER;
hash = (53 * hash) + getStructuredQuery().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.firestore.v1.StructuredAggregationQuery parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.StructuredAggregationQuery parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.StructuredAggregationQuery parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.StructuredAggregationQuery parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.firestore.v1.StructuredAggregationQuery parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.firestore.v1.StructuredAggregationQuery parseDelimitedFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.firestore.v1.StructuredAggregationQuery parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.firestore.v1.StructuredAggregationQuery parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.google.firestore.v1.StructuredAggregationQuery prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Firestore query for running an aggregation over a
* [StructuredQuery][google.firestore.v1.StructuredQuery].
*
*
* Protobuf type {@code google.firestore.v1.StructuredAggregationQuery}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.firestore.v1.StructuredAggregationQuery)
com.google.firestore.v1.StructuredAggregationQueryOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.firestore.v1.StructuredAggregationQuery.class,
com.google.firestore.v1.StructuredAggregationQuery.Builder.class);
}
// Construct using com.google.firestore.v1.StructuredAggregationQuery.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
if (structuredQueryBuilder_ != null) {
structuredQueryBuilder_.clear();
}
if (aggregationsBuilder_ == null) {
aggregations_ = java.util.Collections.emptyList();
} else {
aggregations_ = null;
aggregationsBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000002);
queryTypeCase_ = 0;
queryType_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.firestore.v1.QueryProto
.internal_static_google_firestore_v1_StructuredAggregationQuery_descriptor;
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery getDefaultInstanceForType() {
return com.google.firestore.v1.StructuredAggregationQuery.getDefaultInstance();
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery build() {
com.google.firestore.v1.StructuredAggregationQuery result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery buildPartial() {
com.google.firestore.v1.StructuredAggregationQuery result =
new com.google.firestore.v1.StructuredAggregationQuery(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) {
buildPartial0(result);
}
buildPartialOneofs(result);
onBuilt();
return result;
}
private void buildPartialRepeatedFields(
com.google.firestore.v1.StructuredAggregationQuery result) {
if (aggregationsBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)) {
aggregations_ = java.util.Collections.unmodifiableList(aggregations_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.aggregations_ = aggregations_;
} else {
result.aggregations_ = aggregationsBuilder_.build();
}
}
private void buildPartial0(com.google.firestore.v1.StructuredAggregationQuery result) {
int from_bitField0_ = bitField0_;
}
private void buildPartialOneofs(com.google.firestore.v1.StructuredAggregationQuery result) {
result.queryTypeCase_ = queryTypeCase_;
result.queryType_ = this.queryType_;
if (queryTypeCase_ == 1 && structuredQueryBuilder_ != null) {
result.queryType_ = structuredQueryBuilder_.build();
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.firestore.v1.StructuredAggregationQuery) {
return mergeFrom((com.google.firestore.v1.StructuredAggregationQuery) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.firestore.v1.StructuredAggregationQuery other) {
if (other == com.google.firestore.v1.StructuredAggregationQuery.getDefaultInstance())
return this;
if (aggregationsBuilder_ == null) {
if (!other.aggregations_.isEmpty()) {
if (aggregations_.isEmpty()) {
aggregations_ = other.aggregations_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureAggregationsIsMutable();
aggregations_.addAll(other.aggregations_);
}
onChanged();
}
} else {
if (!other.aggregations_.isEmpty()) {
if (aggregationsBuilder_.isEmpty()) {
aggregationsBuilder_.dispose();
aggregationsBuilder_ = null;
aggregations_ = other.aggregations_;
bitField0_ = (bitField0_ & ~0x00000002);
aggregationsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders
? getAggregationsFieldBuilder()
: null;
} else {
aggregationsBuilder_.addAllMessages(other.aggregations_);
}
}
}
switch (other.getQueryTypeCase()) {
case STRUCTURED_QUERY:
{
mergeStructuredQuery(other.getStructuredQuery());
break;
}
case QUERYTYPE_NOT_SET:
{
break;
}
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
input.readMessage(getStructuredQueryFieldBuilder().getBuilder(), extensionRegistry);
queryTypeCase_ = 1;
break;
} // case 10
case 26:
{
com.google.firestore.v1.StructuredAggregationQuery.Aggregation m =
input.readMessage(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.parser(),
extensionRegistry);
if (aggregationsBuilder_ == null) {
ensureAggregationsIsMutable();
aggregations_.add(m);
} else {
aggregationsBuilder_.addMessage(m);
}
break;
} // case 26
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int queryTypeCase_ = 0;
private java.lang.Object queryType_;
public QueryTypeCase getQueryTypeCase() {
return QueryTypeCase.forNumber(queryTypeCase_);
}
public Builder clearQueryType() {
queryTypeCase_ = 0;
queryType_ = null;
onChanged();
return this;
}
private int bitField0_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredQuery,
com.google.firestore.v1.StructuredQuery.Builder,
com.google.firestore.v1.StructuredQueryOrBuilder>
structuredQueryBuilder_;
/**
*
*
*
* Nested structured query.
*
*
* .google.firestore.v1.StructuredQuery structured_query = 1;
*
* @return Whether the structuredQuery field is set.
*/
@java.lang.Override
public boolean hasStructuredQuery() {
return queryTypeCase_ == 1;
}
/**
*
*
*
* Nested structured query.
*
*
* .google.firestore.v1.StructuredQuery structured_query = 1;
*
* @return The structuredQuery.
*/
@java.lang.Override
public com.google.firestore.v1.StructuredQuery getStructuredQuery() {
if (structuredQueryBuilder_ == null) {
if (queryTypeCase_ == 1) {
return (com.google.firestore.v1.StructuredQuery) queryType_;
}
return com.google.firestore.v1.StructuredQuery.getDefaultInstance();
} else {
if (queryTypeCase_ == 1) {
return structuredQueryBuilder_.getMessage();
}
return com.google.firestore.v1.StructuredQuery.getDefaultInstance();
}
}
/**
*
*
*
* Nested structured query.
*
*
* .google.firestore.v1.StructuredQuery structured_query = 1;
*/
public Builder setStructuredQuery(com.google.firestore.v1.StructuredQuery value) {
if (structuredQueryBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
queryType_ = value;
onChanged();
} else {
structuredQueryBuilder_.setMessage(value);
}
queryTypeCase_ = 1;
return this;
}
/**
*
*
*
* Nested structured query.
*
*
* .google.firestore.v1.StructuredQuery structured_query = 1;
*/
public Builder setStructuredQuery(
com.google.firestore.v1.StructuredQuery.Builder builderForValue) {
if (structuredQueryBuilder_ == null) {
queryType_ = builderForValue.build();
onChanged();
} else {
structuredQueryBuilder_.setMessage(builderForValue.build());
}
queryTypeCase_ = 1;
return this;
}
/**
*
*
*
* Nested structured query.
*
*
* .google.firestore.v1.StructuredQuery structured_query = 1;
*/
public Builder mergeStructuredQuery(com.google.firestore.v1.StructuredQuery value) {
if (structuredQueryBuilder_ == null) {
if (queryTypeCase_ == 1
&& queryType_ != com.google.firestore.v1.StructuredQuery.getDefaultInstance()) {
queryType_ =
com.google.firestore.v1.StructuredQuery.newBuilder(
(com.google.firestore.v1.StructuredQuery) queryType_)
.mergeFrom(value)
.buildPartial();
} else {
queryType_ = value;
}
onChanged();
} else {
if (queryTypeCase_ == 1) {
structuredQueryBuilder_.mergeFrom(value);
} else {
structuredQueryBuilder_.setMessage(value);
}
}
queryTypeCase_ = 1;
return this;
}
/**
*
*
*
* Nested structured query.
*
*
* .google.firestore.v1.StructuredQuery structured_query = 1;
*/
public Builder clearStructuredQuery() {
if (structuredQueryBuilder_ == null) {
if (queryTypeCase_ == 1) {
queryTypeCase_ = 0;
queryType_ = null;
onChanged();
}
} else {
if (queryTypeCase_ == 1) {
queryTypeCase_ = 0;
queryType_ = null;
}
structuredQueryBuilder_.clear();
}
return this;
}
/**
*
*
*
* Nested structured query.
*
*
* .google.firestore.v1.StructuredQuery structured_query = 1;
*/
public com.google.firestore.v1.StructuredQuery.Builder getStructuredQueryBuilder() {
return getStructuredQueryFieldBuilder().getBuilder();
}
/**
*
*
*
* Nested structured query.
*
*
* .google.firestore.v1.StructuredQuery structured_query = 1;
*/
@java.lang.Override
public com.google.firestore.v1.StructuredQueryOrBuilder getStructuredQueryOrBuilder() {
if ((queryTypeCase_ == 1) && (structuredQueryBuilder_ != null)) {
return structuredQueryBuilder_.getMessageOrBuilder();
} else {
if (queryTypeCase_ == 1) {
return (com.google.firestore.v1.StructuredQuery) queryType_;
}
return com.google.firestore.v1.StructuredQuery.getDefaultInstance();
}
}
/**
*
*
*
* Nested structured query.
*
*
* .google.firestore.v1.StructuredQuery structured_query = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredQuery,
com.google.firestore.v1.StructuredQuery.Builder,
com.google.firestore.v1.StructuredQueryOrBuilder>
getStructuredQueryFieldBuilder() {
if (structuredQueryBuilder_ == null) {
if (!(queryTypeCase_ == 1)) {
queryType_ = com.google.firestore.v1.StructuredQuery.getDefaultInstance();
}
structuredQueryBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.firestore.v1.StructuredQuery,
com.google.firestore.v1.StructuredQuery.Builder,
com.google.firestore.v1.StructuredQueryOrBuilder>(
(com.google.firestore.v1.StructuredQuery) queryType_,
getParentForChildren(),
isClean());
queryType_ = null;
}
queryTypeCase_ = 1;
onChanged();
return structuredQueryBuilder_;
}
private java.util.List
aggregations_ = java.util.Collections.emptyList();
private void ensureAggregationsIsMutable() {
if (!((bitField0_ & 0x00000002) != 0)) {
aggregations_ =
new java.util.ArrayList(
aggregations_);
bitField0_ |= 0x00000002;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.firestore.v1.StructuredAggregationQuery.Aggregation,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Builder,
com.google.firestore.v1.StructuredAggregationQuery.AggregationOrBuilder>
aggregationsBuilder_;
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public java.util.List
getAggregationsList() {
if (aggregationsBuilder_ == null) {
return java.util.Collections.unmodifiableList(aggregations_);
} else {
return aggregationsBuilder_.getMessageList();
}
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public int getAggregationsCount() {
if (aggregationsBuilder_ == null) {
return aggregations_.size();
} else {
return aggregationsBuilder_.getCount();
}
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation getAggregations(
int index) {
if (aggregationsBuilder_ == null) {
return aggregations_.get(index);
} else {
return aggregationsBuilder_.getMessage(index);
}
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder setAggregations(
int index, com.google.firestore.v1.StructuredAggregationQuery.Aggregation value) {
if (aggregationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureAggregationsIsMutable();
aggregations_.set(index, value);
onChanged();
} else {
aggregationsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder setAggregations(
int index,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Builder builderForValue) {
if (aggregationsBuilder_ == null) {
ensureAggregationsIsMutable();
aggregations_.set(index, builderForValue.build());
onChanged();
} else {
aggregationsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder addAggregations(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation value) {
if (aggregationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureAggregationsIsMutable();
aggregations_.add(value);
onChanged();
} else {
aggregationsBuilder_.addMessage(value);
}
return this;
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder addAggregations(
int index, com.google.firestore.v1.StructuredAggregationQuery.Aggregation value) {
if (aggregationsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureAggregationsIsMutable();
aggregations_.add(index, value);
onChanged();
} else {
aggregationsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder addAggregations(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Builder builderForValue) {
if (aggregationsBuilder_ == null) {
ensureAggregationsIsMutable();
aggregations_.add(builderForValue.build());
onChanged();
} else {
aggregationsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder addAggregations(
int index,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Builder builderForValue) {
if (aggregationsBuilder_ == null) {
ensureAggregationsIsMutable();
aggregations_.add(index, builderForValue.build());
onChanged();
} else {
aggregationsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder addAllAggregations(
java.lang.Iterable extends com.google.firestore.v1.StructuredAggregationQuery.Aggregation>
values) {
if (aggregationsBuilder_ == null) {
ensureAggregationsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, aggregations_);
onChanged();
} else {
aggregationsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder clearAggregations() {
if (aggregationsBuilder_ == null) {
aggregations_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
aggregationsBuilder_.clear();
}
return this;
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public Builder removeAggregations(int index) {
if (aggregationsBuilder_ == null) {
ensureAggregationsIsMutable();
aggregations_.remove(index);
onChanged();
} else {
aggregationsBuilder_.remove(index);
}
return this;
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Builder
getAggregationsBuilder(int index) {
return getAggregationsFieldBuilder().getBuilder(index);
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public com.google.firestore.v1.StructuredAggregationQuery.AggregationOrBuilder
getAggregationsOrBuilder(int index) {
if (aggregationsBuilder_ == null) {
return aggregations_.get(index);
} else {
return aggregationsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public java.util.List<
? extends com.google.firestore.v1.StructuredAggregationQuery.AggregationOrBuilder>
getAggregationsOrBuilderList() {
if (aggregationsBuilder_ != null) {
return aggregationsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(aggregations_);
}
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Builder
addAggregationsBuilder() {
return getAggregationsFieldBuilder()
.addBuilder(
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.getDefaultInstance());
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Builder
addAggregationsBuilder(int index) {
return getAggregationsFieldBuilder()
.addBuilder(
index,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.getDefaultInstance());
}
/**
*
*
*
* Optional. Series of aggregations to apply over the results of the
* `structured_query`.
*
* Requires:
*
* * A minimum of one and maximum of five aggregations per query.
*
*
*
* repeated .google.firestore.v1.StructuredAggregationQuery.Aggregation aggregations = 3 [(.google.api.field_behavior) = OPTIONAL];
*
*/
public java.util.List
getAggregationsBuilderList() {
return getAggregationsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.firestore.v1.StructuredAggregationQuery.Aggregation,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Builder,
com.google.firestore.v1.StructuredAggregationQuery.AggregationOrBuilder>
getAggregationsFieldBuilder() {
if (aggregationsBuilder_ == null) {
aggregationsBuilder_ =
new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.firestore.v1.StructuredAggregationQuery.Aggregation,
com.google.firestore.v1.StructuredAggregationQuery.Aggregation.Builder,
com.google.firestore.v1.StructuredAggregationQuery.AggregationOrBuilder>(
aggregations_, ((bitField0_ & 0x00000002) != 0), getParentForChildren(), isClean());
aggregations_ = null;
}
return aggregationsBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.firestore.v1.StructuredAggregationQuery)
}
// @@protoc_insertion_point(class_scope:google.firestore.v1.StructuredAggregationQuery)
private static final com.google.firestore.v1.StructuredAggregationQuery DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.firestore.v1.StructuredAggregationQuery();
}
public static com.google.firestore.v1.StructuredAggregationQuery getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public StructuredAggregationQuery parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.firestore.v1.StructuredAggregationQuery getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy