com.google.firestore.v1.CommitResponse 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/firestore.proto
// Protobuf Java Version: 3.25.4
package com.google.firestore.v1;
/**
*
*
*
* The response for [Firestore.Commit][google.firestore.v1.Firestore.Commit].
*
*
* Protobuf type {@code google.firestore.v1.CommitResponse}
*/
public final class CommitResponse extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.firestore.v1.CommitResponse)
CommitResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use CommitResponse.newBuilder() to construct.
private CommitResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private CommitResponse() {
writeResults_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new CommitResponse();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.firestore.v1.FirestoreProto
.internal_static_google_firestore_v1_CommitResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.firestore.v1.FirestoreProto
.internal_static_google_firestore_v1_CommitResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.firestore.v1.CommitResponse.class,
com.google.firestore.v1.CommitResponse.Builder.class);
}
private int bitField0_;
public static final int WRITE_RESULTS_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private java.util.List writeResults_;
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
@java.lang.Override
public java.util.List getWriteResultsList() {
return writeResults_;
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
@java.lang.Override
public java.util.List extends com.google.firestore.v1.WriteResultOrBuilder>
getWriteResultsOrBuilderList() {
return writeResults_;
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
@java.lang.Override
public int getWriteResultsCount() {
return writeResults_.size();
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
@java.lang.Override
public com.google.firestore.v1.WriteResult getWriteResults(int index) {
return writeResults_.get(index);
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
@java.lang.Override
public com.google.firestore.v1.WriteResultOrBuilder getWriteResultsOrBuilder(int index) {
return writeResults_.get(index);
}
public static final int COMMIT_TIME_FIELD_NUMBER = 2;
private com.google.protobuf.Timestamp commitTime_;
/**
*
*
*
* The time at which the commit occurred. Any read with an equal or greater
* `read_time` is guaranteed to see the effects of the commit.
*
*
* .google.protobuf.Timestamp commit_time = 2;
*
* @return Whether the commitTime field is set.
*/
@java.lang.Override
public boolean hasCommitTime() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* The time at which the commit occurred. Any read with an equal or greater
* `read_time` is guaranteed to see the effects of the commit.
*
*
* .google.protobuf.Timestamp commit_time = 2;
*
* @return The commitTime.
*/
@java.lang.Override
public com.google.protobuf.Timestamp getCommitTime() {
return commitTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : commitTime_;
}
/**
*
*
*
* The time at which the commit occurred. Any read with an equal or greater
* `read_time` is guaranteed to see the effects of the commit.
*
*
* .google.protobuf.Timestamp commit_time = 2;
*/
@java.lang.Override
public com.google.protobuf.TimestampOrBuilder getCommitTimeOrBuilder() {
return commitTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : commitTime_;
}
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 {
for (int i = 0; i < writeResults_.size(); i++) {
output.writeMessage(1, writeResults_.get(i));
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(2, getCommitTime());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < writeResults_.size(); i++) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, writeResults_.get(i));
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getCommitTime());
}
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.CommitResponse)) {
return super.equals(obj);
}
com.google.firestore.v1.CommitResponse other = (com.google.firestore.v1.CommitResponse) obj;
if (!getWriteResultsList().equals(other.getWriteResultsList())) return false;
if (hasCommitTime() != other.hasCommitTime()) return false;
if (hasCommitTime()) {
if (!getCommitTime().equals(other.getCommitTime())) 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 (getWriteResultsCount() > 0) {
hash = (37 * hash) + WRITE_RESULTS_FIELD_NUMBER;
hash = (53 * hash) + getWriteResultsList().hashCode();
}
if (hasCommitTime()) {
hash = (37 * hash) + COMMIT_TIME_FIELD_NUMBER;
hash = (53 * hash) + getCommitTime().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.firestore.v1.CommitResponse parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.CommitResponse 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.CommitResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.CommitResponse 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.CommitResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.firestore.v1.CommitResponse parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.firestore.v1.CommitResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.firestore.v1.CommitResponse 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.CommitResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.firestore.v1.CommitResponse 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.CommitResponse parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.firestore.v1.CommitResponse 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.CommitResponse 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;
}
/**
*
*
*
* The response for [Firestore.Commit][google.firestore.v1.Firestore.Commit].
*
*
* Protobuf type {@code google.firestore.v1.CommitResponse}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.firestore.v1.CommitResponse)
com.google.firestore.v1.CommitResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.firestore.v1.FirestoreProto
.internal_static_google_firestore_v1_CommitResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.firestore.v1.FirestoreProto
.internal_static_google_firestore_v1_CommitResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.firestore.v1.CommitResponse.class,
com.google.firestore.v1.CommitResponse.Builder.class);
}
// Construct using com.google.firestore.v1.CommitResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getWriteResultsFieldBuilder();
getCommitTimeFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
if (writeResultsBuilder_ == null) {
writeResults_ = java.util.Collections.emptyList();
} else {
writeResults_ = null;
writeResultsBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000001);
commitTime_ = null;
if (commitTimeBuilder_ != null) {
commitTimeBuilder_.dispose();
commitTimeBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.firestore.v1.FirestoreProto
.internal_static_google_firestore_v1_CommitResponse_descriptor;
}
@java.lang.Override
public com.google.firestore.v1.CommitResponse getDefaultInstanceForType() {
return com.google.firestore.v1.CommitResponse.getDefaultInstance();
}
@java.lang.Override
public com.google.firestore.v1.CommitResponse build() {
com.google.firestore.v1.CommitResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.firestore.v1.CommitResponse buildPartial() {
com.google.firestore.v1.CommitResponse result =
new com.google.firestore.v1.CommitResponse(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartialRepeatedFields(com.google.firestore.v1.CommitResponse result) {
if (writeResultsBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
writeResults_ = java.util.Collections.unmodifiableList(writeResults_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.writeResults_ = writeResults_;
} else {
result.writeResults_ = writeResultsBuilder_.build();
}
}
private void buildPartial0(com.google.firestore.v1.CommitResponse result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000002) != 0)) {
result.commitTime_ = commitTimeBuilder_ == null ? commitTime_ : commitTimeBuilder_.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.CommitResponse) {
return mergeFrom((com.google.firestore.v1.CommitResponse) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.firestore.v1.CommitResponse other) {
if (other == com.google.firestore.v1.CommitResponse.getDefaultInstance()) return this;
if (writeResultsBuilder_ == null) {
if (!other.writeResults_.isEmpty()) {
if (writeResults_.isEmpty()) {
writeResults_ = other.writeResults_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureWriteResultsIsMutable();
writeResults_.addAll(other.writeResults_);
}
onChanged();
}
} else {
if (!other.writeResults_.isEmpty()) {
if (writeResultsBuilder_.isEmpty()) {
writeResultsBuilder_.dispose();
writeResultsBuilder_ = null;
writeResults_ = other.writeResults_;
bitField0_ = (bitField0_ & ~0x00000001);
writeResultsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders
? getWriteResultsFieldBuilder()
: null;
} else {
writeResultsBuilder_.addAllMessages(other.writeResults_);
}
}
}
if (other.hasCommitTime()) {
mergeCommitTime(other.getCommitTime());
}
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:
{
com.google.firestore.v1.WriteResult m =
input.readMessage(
com.google.firestore.v1.WriteResult.parser(), extensionRegistry);
if (writeResultsBuilder_ == null) {
ensureWriteResultsIsMutable();
writeResults_.add(m);
} else {
writeResultsBuilder_.addMessage(m);
}
break;
} // case 10
case 18:
{
input.readMessage(getCommitTimeFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
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 java.util.List writeResults_ =
java.util.Collections.emptyList();
private void ensureWriteResultsIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
writeResults_ = new java.util.ArrayList(writeResults_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.firestore.v1.WriteResult,
com.google.firestore.v1.WriteResult.Builder,
com.google.firestore.v1.WriteResultOrBuilder>
writeResultsBuilder_;
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public java.util.List getWriteResultsList() {
if (writeResultsBuilder_ == null) {
return java.util.Collections.unmodifiableList(writeResults_);
} else {
return writeResultsBuilder_.getMessageList();
}
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public int getWriteResultsCount() {
if (writeResultsBuilder_ == null) {
return writeResults_.size();
} else {
return writeResultsBuilder_.getCount();
}
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public com.google.firestore.v1.WriteResult getWriteResults(int index) {
if (writeResultsBuilder_ == null) {
return writeResults_.get(index);
} else {
return writeResultsBuilder_.getMessage(index);
}
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public Builder setWriteResults(int index, com.google.firestore.v1.WriteResult value) {
if (writeResultsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureWriteResultsIsMutable();
writeResults_.set(index, value);
onChanged();
} else {
writeResultsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public Builder setWriteResults(
int index, com.google.firestore.v1.WriteResult.Builder builderForValue) {
if (writeResultsBuilder_ == null) {
ensureWriteResultsIsMutable();
writeResults_.set(index, builderForValue.build());
onChanged();
} else {
writeResultsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public Builder addWriteResults(com.google.firestore.v1.WriteResult value) {
if (writeResultsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureWriteResultsIsMutable();
writeResults_.add(value);
onChanged();
} else {
writeResultsBuilder_.addMessage(value);
}
return this;
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public Builder addWriteResults(int index, com.google.firestore.v1.WriteResult value) {
if (writeResultsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureWriteResultsIsMutable();
writeResults_.add(index, value);
onChanged();
} else {
writeResultsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public Builder addWriteResults(com.google.firestore.v1.WriteResult.Builder builderForValue) {
if (writeResultsBuilder_ == null) {
ensureWriteResultsIsMutable();
writeResults_.add(builderForValue.build());
onChanged();
} else {
writeResultsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public Builder addWriteResults(
int index, com.google.firestore.v1.WriteResult.Builder builderForValue) {
if (writeResultsBuilder_ == null) {
ensureWriteResultsIsMutable();
writeResults_.add(index, builderForValue.build());
onChanged();
} else {
writeResultsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public Builder addAllWriteResults(
java.lang.Iterable extends com.google.firestore.v1.WriteResult> values) {
if (writeResultsBuilder_ == null) {
ensureWriteResultsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, writeResults_);
onChanged();
} else {
writeResultsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public Builder clearWriteResults() {
if (writeResultsBuilder_ == null) {
writeResults_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
writeResultsBuilder_.clear();
}
return this;
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public Builder removeWriteResults(int index) {
if (writeResultsBuilder_ == null) {
ensureWriteResultsIsMutable();
writeResults_.remove(index);
onChanged();
} else {
writeResultsBuilder_.remove(index);
}
return this;
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public com.google.firestore.v1.WriteResult.Builder getWriteResultsBuilder(int index) {
return getWriteResultsFieldBuilder().getBuilder(index);
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public com.google.firestore.v1.WriteResultOrBuilder getWriteResultsOrBuilder(int index) {
if (writeResultsBuilder_ == null) {
return writeResults_.get(index);
} else {
return writeResultsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public java.util.List extends com.google.firestore.v1.WriteResultOrBuilder>
getWriteResultsOrBuilderList() {
if (writeResultsBuilder_ != null) {
return writeResultsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(writeResults_);
}
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public com.google.firestore.v1.WriteResult.Builder addWriteResultsBuilder() {
return getWriteResultsFieldBuilder()
.addBuilder(com.google.firestore.v1.WriteResult.getDefaultInstance());
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public com.google.firestore.v1.WriteResult.Builder addWriteResultsBuilder(int index) {
return getWriteResultsFieldBuilder()
.addBuilder(index, com.google.firestore.v1.WriteResult.getDefaultInstance());
}
/**
*
*
*
* The result of applying the writes.
*
* This i-th write result corresponds to the i-th write in the
* request.
*
*
* repeated .google.firestore.v1.WriteResult write_results = 1;
*/
public java.util.List
getWriteResultsBuilderList() {
return getWriteResultsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.firestore.v1.WriteResult,
com.google.firestore.v1.WriteResult.Builder,
com.google.firestore.v1.WriteResultOrBuilder>
getWriteResultsFieldBuilder() {
if (writeResultsBuilder_ == null) {
writeResultsBuilder_ =
new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.firestore.v1.WriteResult,
com.google.firestore.v1.WriteResult.Builder,
com.google.firestore.v1.WriteResultOrBuilder>(
writeResults_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean());
writeResults_ = null;
}
return writeResultsBuilder_;
}
private com.google.protobuf.Timestamp commitTime_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
commitTimeBuilder_;
/**
*
*
*
* The time at which the commit occurred. Any read with an equal or greater
* `read_time` is guaranteed to see the effects of the commit.
*
*
* .google.protobuf.Timestamp commit_time = 2;
*
* @return Whether the commitTime field is set.
*/
public boolean hasCommitTime() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* The time at which the commit occurred. Any read with an equal or greater
* `read_time` is guaranteed to see the effects of the commit.
*
*
* .google.protobuf.Timestamp commit_time = 2;
*
* @return The commitTime.
*/
public com.google.protobuf.Timestamp getCommitTime() {
if (commitTimeBuilder_ == null) {
return commitTime_ == null
? com.google.protobuf.Timestamp.getDefaultInstance()
: commitTime_;
} else {
return commitTimeBuilder_.getMessage();
}
}
/**
*
*
*
* The time at which the commit occurred. Any read with an equal or greater
* `read_time` is guaranteed to see the effects of the commit.
*
*
* .google.protobuf.Timestamp commit_time = 2;
*/
public Builder setCommitTime(com.google.protobuf.Timestamp value) {
if (commitTimeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
commitTime_ = value;
} else {
commitTimeBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* The time at which the commit occurred. Any read with an equal or greater
* `read_time` is guaranteed to see the effects of the commit.
*
*
* .google.protobuf.Timestamp commit_time = 2;
*/
public Builder setCommitTime(com.google.protobuf.Timestamp.Builder builderForValue) {
if (commitTimeBuilder_ == null) {
commitTime_ = builderForValue.build();
} else {
commitTimeBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* The time at which the commit occurred. Any read with an equal or greater
* `read_time` is guaranteed to see the effects of the commit.
*
*
* .google.protobuf.Timestamp commit_time = 2;
*/
public Builder mergeCommitTime(com.google.protobuf.Timestamp value) {
if (commitTimeBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)
&& commitTime_ != null
&& commitTime_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
getCommitTimeBuilder().mergeFrom(value);
} else {
commitTime_ = value;
}
} else {
commitTimeBuilder_.mergeFrom(value);
}
if (commitTime_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
*
*
*
* The time at which the commit occurred. Any read with an equal or greater
* `read_time` is guaranteed to see the effects of the commit.
*
*
* .google.protobuf.Timestamp commit_time = 2;
*/
public Builder clearCommitTime() {
bitField0_ = (bitField0_ & ~0x00000002);
commitTime_ = null;
if (commitTimeBuilder_ != null) {
commitTimeBuilder_.dispose();
commitTimeBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* The time at which the commit occurred. Any read with an equal or greater
* `read_time` is guaranteed to see the effects of the commit.
*
*
* .google.protobuf.Timestamp commit_time = 2;
*/
public com.google.protobuf.Timestamp.Builder getCommitTimeBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getCommitTimeFieldBuilder().getBuilder();
}
/**
*
*
*
* The time at which the commit occurred. Any read with an equal or greater
* `read_time` is guaranteed to see the effects of the commit.
*
*
* .google.protobuf.Timestamp commit_time = 2;
*/
public com.google.protobuf.TimestampOrBuilder getCommitTimeOrBuilder() {
if (commitTimeBuilder_ != null) {
return commitTimeBuilder_.getMessageOrBuilder();
} else {
return commitTime_ == null
? com.google.protobuf.Timestamp.getDefaultInstance()
: commitTime_;
}
}
/**
*
*
*
* The time at which the commit occurred. Any read with an equal or greater
* `read_time` is guaranteed to see the effects of the commit.
*
*
* .google.protobuf.Timestamp commit_time = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
getCommitTimeFieldBuilder() {
if (commitTimeBuilder_ == null) {
commitTimeBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>(
getCommitTime(), getParentForChildren(), isClean());
commitTime_ = null;
}
return commitTimeBuilder_;
}
@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.CommitResponse)
}
// @@protoc_insertion_point(class_scope:google.firestore.v1.CommitResponse)
private static final com.google.firestore.v1.CommitResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.firestore.v1.CommitResponse();
}
public static com.google.firestore.v1.CommitResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public CommitResponse 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.CommitResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy