All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.firestore.v1.GetDocumentRequest Maven / Gradle / Ivy

There is a newer version: 3.29.1
Show newest version
/*
 * 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 request for
 * [Firestore.GetDocument][google.firestore.v1.Firestore.GetDocument].
 * 
* * Protobuf type {@code google.firestore.v1.GetDocumentRequest} */ public final class GetDocumentRequest extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.firestore.v1.GetDocumentRequest) GetDocumentRequestOrBuilder { private static final long serialVersionUID = 0L; // Use GetDocumentRequest.newBuilder() to construct. private GetDocumentRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private GetDocumentRequest() { name_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new GetDocumentRequest(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.firestore.v1.FirestoreProto .internal_static_google_firestore_v1_GetDocumentRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.firestore.v1.FirestoreProto .internal_static_google_firestore_v1_GetDocumentRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.firestore.v1.GetDocumentRequest.class, com.google.firestore.v1.GetDocumentRequest.Builder.class); } private int bitField0_; private int consistencySelectorCase_ = 0; @SuppressWarnings("serial") private java.lang.Object consistencySelector_; public enum ConsistencySelectorCase implements com.google.protobuf.Internal.EnumLite, com.google.protobuf.AbstractMessage.InternalOneOfEnum { TRANSACTION(3), READ_TIME(5), CONSISTENCYSELECTOR_NOT_SET(0); private final int value; private ConsistencySelectorCase(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 ConsistencySelectorCase valueOf(int value) { return forNumber(value); } public static ConsistencySelectorCase forNumber(int value) { switch (value) { case 3: return TRANSACTION; case 5: return READ_TIME; case 0: return CONSISTENCYSELECTOR_NOT_SET; default: return null; } } public int getNumber() { return this.value; } }; public ConsistencySelectorCase getConsistencySelectorCase() { return ConsistencySelectorCase.forNumber(consistencySelectorCase_); } public static final int NAME_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object name_ = ""; /** * * *
   * Required. The resource name of the Document to get. In the format:
   * `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
   * 
* * string name = 1 [(.google.api.field_behavior) = REQUIRED]; * * @return The name. */ @java.lang.Override public java.lang.String getName() { java.lang.Object ref = name_; 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(); name_ = s; return s; } } /** * * *
   * Required. The resource name of the Document to get. In the format:
   * `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
   * 
* * string name = 1 [(.google.api.field_behavior) = REQUIRED]; * * @return The bytes for name. */ @java.lang.Override public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int MASK_FIELD_NUMBER = 2; private com.google.firestore.v1.DocumentMask mask_; /** * * *
   * The fields to return. If not set, returns all fields.
   *
   * If the document has a field that is not present in this mask, that field
   * will not be returned in the response.
   * 
* * .google.firestore.v1.DocumentMask mask = 2; * * @return Whether the mask field is set. */ @java.lang.Override public boolean hasMask() { return ((bitField0_ & 0x00000001) != 0); } /** * * *
   * The fields to return. If not set, returns all fields.
   *
   * If the document has a field that is not present in this mask, that field
   * will not be returned in the response.
   * 
* * .google.firestore.v1.DocumentMask mask = 2; * * @return The mask. */ @java.lang.Override public com.google.firestore.v1.DocumentMask getMask() { return mask_ == null ? com.google.firestore.v1.DocumentMask.getDefaultInstance() : mask_; } /** * * *
   * The fields to return. If not set, returns all fields.
   *
   * If the document has a field that is not present in this mask, that field
   * will not be returned in the response.
   * 
* * .google.firestore.v1.DocumentMask mask = 2; */ @java.lang.Override public com.google.firestore.v1.DocumentMaskOrBuilder getMaskOrBuilder() { return mask_ == null ? com.google.firestore.v1.DocumentMask.getDefaultInstance() : mask_; } public static final int TRANSACTION_FIELD_NUMBER = 3; /** * * *
   * Reads the document in a transaction.
   * 
* * bytes transaction = 3; * * @return Whether the transaction field is set. */ @java.lang.Override public boolean hasTransaction() { return consistencySelectorCase_ == 3; } /** * * *
   * Reads the document in a transaction.
   * 
* * bytes transaction = 3; * * @return The transaction. */ @java.lang.Override public com.google.protobuf.ByteString getTransaction() { if (consistencySelectorCase_ == 3) { return (com.google.protobuf.ByteString) consistencySelector_; } return com.google.protobuf.ByteString.EMPTY; } public static final int READ_TIME_FIELD_NUMBER = 5; /** * * *
   * Reads the version of the document at the given time.
   *
   * This must be a microsecond precision timestamp within the past one hour,
   * or if Point-in-Time Recovery is enabled, can additionally be a whole
   * minute timestamp within the past 7 days.
   * 
* * .google.protobuf.Timestamp read_time = 5; * * @return Whether the readTime field is set. */ @java.lang.Override public boolean hasReadTime() { return consistencySelectorCase_ == 5; } /** * * *
   * Reads the version of the document at the given time.
   *
   * This must be a microsecond precision timestamp within the past one hour,
   * or if Point-in-Time Recovery is enabled, can additionally be a whole
   * minute timestamp within the past 7 days.
   * 
* * .google.protobuf.Timestamp read_time = 5; * * @return The readTime. */ @java.lang.Override public com.google.protobuf.Timestamp getReadTime() { if (consistencySelectorCase_ == 5) { return (com.google.protobuf.Timestamp) consistencySelector_; } return com.google.protobuf.Timestamp.getDefaultInstance(); } /** * * *
   * Reads the version of the document at the given time.
   *
   * This must be a microsecond precision timestamp within the past one hour,
   * or if Point-in-Time Recovery is enabled, can additionally be a whole
   * minute timestamp within the past 7 days.
   * 
* * .google.protobuf.Timestamp read_time = 5; */ @java.lang.Override public com.google.protobuf.TimestampOrBuilder getReadTimeOrBuilder() { if (consistencySelectorCase_ == 5) { return (com.google.protobuf.Timestamp) consistencySelector_; } return com.google.protobuf.Timestamp.getDefaultInstance(); } 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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_); } if (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(2, getMask()); } if (consistencySelectorCase_ == 3) { output.writeBytes(3, (com.google.protobuf.ByteString) consistencySelector_); } if (consistencySelectorCase_ == 5) { output.writeMessage(5, (com.google.protobuf.Timestamp) consistencySelector_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_); } if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getMask()); } if (consistencySelectorCase_ == 3) { size += com.google.protobuf.CodedOutputStream.computeBytesSize( 3, (com.google.protobuf.ByteString) consistencySelector_); } if (consistencySelectorCase_ == 5) { size += com.google.protobuf.CodedOutputStream.computeMessageSize( 5, (com.google.protobuf.Timestamp) consistencySelector_); } 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.GetDocumentRequest)) { return super.equals(obj); } com.google.firestore.v1.GetDocumentRequest other = (com.google.firestore.v1.GetDocumentRequest) obj; if (!getName().equals(other.getName())) return false; if (hasMask() != other.hasMask()) return false; if (hasMask()) { if (!getMask().equals(other.getMask())) return false; } if (!getConsistencySelectorCase().equals(other.getConsistencySelectorCase())) return false; switch (consistencySelectorCase_) { case 3: if (!getTransaction().equals(other.getTransaction())) return false; break; case 5: if (!getReadTime().equals(other.getReadTime())) 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) + NAME_FIELD_NUMBER; hash = (53 * hash) + getName().hashCode(); if (hasMask()) { hash = (37 * hash) + MASK_FIELD_NUMBER; hash = (53 * hash) + getMask().hashCode(); } switch (consistencySelectorCase_) { case 3: hash = (37 * hash) + TRANSACTION_FIELD_NUMBER; hash = (53 * hash) + getTransaction().hashCode(); break; case 5: hash = (37 * hash) + READ_TIME_FIELD_NUMBER; hash = (53 * hash) + getReadTime().hashCode(); break; case 0: default: } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.firestore.v1.GetDocumentRequest parseFrom(java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.firestore.v1.GetDocumentRequest 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.GetDocumentRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.firestore.v1.GetDocumentRequest 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.GetDocumentRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.firestore.v1.GetDocumentRequest parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.firestore.v1.GetDocumentRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.firestore.v1.GetDocumentRequest 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.GetDocumentRequest parseDelimitedFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.firestore.v1.GetDocumentRequest 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.GetDocumentRequest parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.firestore.v1.GetDocumentRequest 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.GetDocumentRequest 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 request for
   * [Firestore.GetDocument][google.firestore.v1.Firestore.GetDocument].
   * 
* * Protobuf type {@code google.firestore.v1.GetDocumentRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.firestore.v1.GetDocumentRequest) com.google.firestore.v1.GetDocumentRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.firestore.v1.FirestoreProto .internal_static_google_firestore_v1_GetDocumentRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.firestore.v1.FirestoreProto .internal_static_google_firestore_v1_GetDocumentRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.firestore.v1.GetDocumentRequest.class, com.google.firestore.v1.GetDocumentRequest.Builder.class); } // Construct using com.google.firestore.v1.GetDocumentRequest.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { getMaskFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; name_ = ""; mask_ = null; if (maskBuilder_ != null) { maskBuilder_.dispose(); maskBuilder_ = null; } if (readTimeBuilder_ != null) { readTimeBuilder_.clear(); } consistencySelectorCase_ = 0; consistencySelector_ = null; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.firestore.v1.FirestoreProto .internal_static_google_firestore_v1_GetDocumentRequest_descriptor; } @java.lang.Override public com.google.firestore.v1.GetDocumentRequest getDefaultInstanceForType() { return com.google.firestore.v1.GetDocumentRequest.getDefaultInstance(); } @java.lang.Override public com.google.firestore.v1.GetDocumentRequest build() { com.google.firestore.v1.GetDocumentRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.firestore.v1.GetDocumentRequest buildPartial() { com.google.firestore.v1.GetDocumentRequest result = new com.google.firestore.v1.GetDocumentRequest(this); if (bitField0_ != 0) { buildPartial0(result); } buildPartialOneofs(result); onBuilt(); return result; } private void buildPartial0(com.google.firestore.v1.GetDocumentRequest result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.name_ = name_; } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000002) != 0)) { result.mask_ = maskBuilder_ == null ? mask_ : maskBuilder_.build(); to_bitField0_ |= 0x00000001; } result.bitField0_ |= to_bitField0_; } private void buildPartialOneofs(com.google.firestore.v1.GetDocumentRequest result) { result.consistencySelectorCase_ = consistencySelectorCase_; result.consistencySelector_ = this.consistencySelector_; if (consistencySelectorCase_ == 5 && readTimeBuilder_ != null) { result.consistencySelector_ = readTimeBuilder_.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.GetDocumentRequest) { return mergeFrom((com.google.firestore.v1.GetDocumentRequest) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.firestore.v1.GetDocumentRequest other) { if (other == com.google.firestore.v1.GetDocumentRequest.getDefaultInstance()) return this; if (!other.getName().isEmpty()) { name_ = other.name_; bitField0_ |= 0x00000001; onChanged(); } if (other.hasMask()) { mergeMask(other.getMask()); } switch (other.getConsistencySelectorCase()) { case TRANSACTION: { setTransaction(other.getTransaction()); break; } case READ_TIME: { mergeReadTime(other.getReadTime()); break; } case CONSISTENCYSELECTOR_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: { name_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 18: { input.readMessage(getMaskFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000002; break; } // case 18 case 26: { consistencySelector_ = input.readBytes(); consistencySelectorCase_ = 3; break; } // case 26 case 42: { input.readMessage(getReadTimeFieldBuilder().getBuilder(), extensionRegistry); consistencySelectorCase_ = 5; break; } // case 42 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 consistencySelectorCase_ = 0; private java.lang.Object consistencySelector_; public ConsistencySelectorCase getConsistencySelectorCase() { return ConsistencySelectorCase.forNumber(consistencySelectorCase_); } public Builder clearConsistencySelector() { consistencySelectorCase_ = 0; consistencySelector_ = null; onChanged(); return this; } private int bitField0_; private java.lang.Object name_ = ""; /** * * *
     * Required. The resource name of the Document to get. In the format:
     * `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
     * 
* * string name = 1 [(.google.api.field_behavior) = REQUIRED]; * * @return The name. */ public java.lang.String getName() { java.lang.Object ref = name_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Required. The resource name of the Document to get. In the format:
     * `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
     * 
* * string name = 1 [(.google.api.field_behavior) = REQUIRED]; * * @return The bytes for name. */ public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Required. The resource name of the Document to get. In the format:
     * `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
     * 
* * string name = 1 [(.google.api.field_behavior) = REQUIRED]; * * @param value The name to set. * @return This builder for chaining. */ public Builder setName(java.lang.String value) { if (value == null) { throw new NullPointerException(); } name_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * * *
     * Required. The resource name of the Document to get. In the format:
     * `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
     * 
* * string name = 1 [(.google.api.field_behavior) = REQUIRED]; * * @return This builder for chaining. */ public Builder clearName() { name_ = getDefaultInstance().getName(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** * * *
     * Required. The resource name of the Document to get. In the format:
     * `projects/{project_id}/databases/{database_id}/documents/{document_path}`.
     * 
* * string name = 1 [(.google.api.field_behavior) = REQUIRED]; * * @param value The bytes for name to set. * @return This builder for chaining. */ public Builder setNameBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); name_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private com.google.firestore.v1.DocumentMask mask_; private com.google.protobuf.SingleFieldBuilderV3< com.google.firestore.v1.DocumentMask, com.google.firestore.v1.DocumentMask.Builder, com.google.firestore.v1.DocumentMaskOrBuilder> maskBuilder_; /** * * *
     * The fields to return. If not set, returns all fields.
     *
     * If the document has a field that is not present in this mask, that field
     * will not be returned in the response.
     * 
* * .google.firestore.v1.DocumentMask mask = 2; * * @return Whether the mask field is set. */ public boolean hasMask() { return ((bitField0_ & 0x00000002) != 0); } /** * * *
     * The fields to return. If not set, returns all fields.
     *
     * If the document has a field that is not present in this mask, that field
     * will not be returned in the response.
     * 
* * .google.firestore.v1.DocumentMask mask = 2; * * @return The mask. */ public com.google.firestore.v1.DocumentMask getMask() { if (maskBuilder_ == null) { return mask_ == null ? com.google.firestore.v1.DocumentMask.getDefaultInstance() : mask_; } else { return maskBuilder_.getMessage(); } } /** * * *
     * The fields to return. If not set, returns all fields.
     *
     * If the document has a field that is not present in this mask, that field
     * will not be returned in the response.
     * 
* * .google.firestore.v1.DocumentMask mask = 2; */ public Builder setMask(com.google.firestore.v1.DocumentMask value) { if (maskBuilder_ == null) { if (value == null) { throw new NullPointerException(); } mask_ = value; } else { maskBuilder_.setMessage(value); } bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * The fields to return. If not set, returns all fields.
     *
     * If the document has a field that is not present in this mask, that field
     * will not be returned in the response.
     * 
* * .google.firestore.v1.DocumentMask mask = 2; */ public Builder setMask(com.google.firestore.v1.DocumentMask.Builder builderForValue) { if (maskBuilder_ == null) { mask_ = builderForValue.build(); } else { maskBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * The fields to return. If not set, returns all fields.
     *
     * If the document has a field that is not present in this mask, that field
     * will not be returned in the response.
     * 
* * .google.firestore.v1.DocumentMask mask = 2; */ public Builder mergeMask(com.google.firestore.v1.DocumentMask value) { if (maskBuilder_ == null) { if (((bitField0_ & 0x00000002) != 0) && mask_ != null && mask_ != com.google.firestore.v1.DocumentMask.getDefaultInstance()) { getMaskBuilder().mergeFrom(value); } else { mask_ = value; } } else { maskBuilder_.mergeFrom(value); } if (mask_ != null) { bitField0_ |= 0x00000002; onChanged(); } return this; } /** * * *
     * The fields to return. If not set, returns all fields.
     *
     * If the document has a field that is not present in this mask, that field
     * will not be returned in the response.
     * 
* * .google.firestore.v1.DocumentMask mask = 2; */ public Builder clearMask() { bitField0_ = (bitField0_ & ~0x00000002); mask_ = null; if (maskBuilder_ != null) { maskBuilder_.dispose(); maskBuilder_ = null; } onChanged(); return this; } /** * * *
     * The fields to return. If not set, returns all fields.
     *
     * If the document has a field that is not present in this mask, that field
     * will not be returned in the response.
     * 
* * .google.firestore.v1.DocumentMask mask = 2; */ public com.google.firestore.v1.DocumentMask.Builder getMaskBuilder() { bitField0_ |= 0x00000002; onChanged(); return getMaskFieldBuilder().getBuilder(); } /** * * *
     * The fields to return. If not set, returns all fields.
     *
     * If the document has a field that is not present in this mask, that field
     * will not be returned in the response.
     * 
* * .google.firestore.v1.DocumentMask mask = 2; */ public com.google.firestore.v1.DocumentMaskOrBuilder getMaskOrBuilder() { if (maskBuilder_ != null) { return maskBuilder_.getMessageOrBuilder(); } else { return mask_ == null ? com.google.firestore.v1.DocumentMask.getDefaultInstance() : mask_; } } /** * * *
     * The fields to return. If not set, returns all fields.
     *
     * If the document has a field that is not present in this mask, that field
     * will not be returned in the response.
     * 
* * .google.firestore.v1.DocumentMask mask = 2; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.firestore.v1.DocumentMask, com.google.firestore.v1.DocumentMask.Builder, com.google.firestore.v1.DocumentMaskOrBuilder> getMaskFieldBuilder() { if (maskBuilder_ == null) { maskBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.firestore.v1.DocumentMask, com.google.firestore.v1.DocumentMask.Builder, com.google.firestore.v1.DocumentMaskOrBuilder>( getMask(), getParentForChildren(), isClean()); mask_ = null; } return maskBuilder_; } /** * * *
     * Reads the document in a transaction.
     * 
* * bytes transaction = 3; * * @return Whether the transaction field is set. */ public boolean hasTransaction() { return consistencySelectorCase_ == 3; } /** * * *
     * Reads the document in a transaction.
     * 
* * bytes transaction = 3; * * @return The transaction. */ public com.google.protobuf.ByteString getTransaction() { if (consistencySelectorCase_ == 3) { return (com.google.protobuf.ByteString) consistencySelector_; } return com.google.protobuf.ByteString.EMPTY; } /** * * *
     * Reads the document in a transaction.
     * 
* * bytes transaction = 3; * * @param value The transaction to set. * @return This builder for chaining. */ public Builder setTransaction(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } consistencySelectorCase_ = 3; consistencySelector_ = value; onChanged(); return this; } /** * * *
     * Reads the document in a transaction.
     * 
* * bytes transaction = 3; * * @return This builder for chaining. */ public Builder clearTransaction() { if (consistencySelectorCase_ == 3) { consistencySelectorCase_ = 0; consistencySelector_ = null; onChanged(); } return this; } private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> readTimeBuilder_; /** * * *
     * Reads the version of the document at the given time.
     *
     * This must be a microsecond precision timestamp within the past one hour,
     * or if Point-in-Time Recovery is enabled, can additionally be a whole
     * minute timestamp within the past 7 days.
     * 
* * .google.protobuf.Timestamp read_time = 5; * * @return Whether the readTime field is set. */ @java.lang.Override public boolean hasReadTime() { return consistencySelectorCase_ == 5; } /** * * *
     * Reads the version of the document at the given time.
     *
     * This must be a microsecond precision timestamp within the past one hour,
     * or if Point-in-Time Recovery is enabled, can additionally be a whole
     * minute timestamp within the past 7 days.
     * 
* * .google.protobuf.Timestamp read_time = 5; * * @return The readTime. */ @java.lang.Override public com.google.protobuf.Timestamp getReadTime() { if (readTimeBuilder_ == null) { if (consistencySelectorCase_ == 5) { return (com.google.protobuf.Timestamp) consistencySelector_; } return com.google.protobuf.Timestamp.getDefaultInstance(); } else { if (consistencySelectorCase_ == 5) { return readTimeBuilder_.getMessage(); } return com.google.protobuf.Timestamp.getDefaultInstance(); } } /** * * *
     * Reads the version of the document at the given time.
     *
     * This must be a microsecond precision timestamp within the past one hour,
     * or if Point-in-Time Recovery is enabled, can additionally be a whole
     * minute timestamp within the past 7 days.
     * 
* * .google.protobuf.Timestamp read_time = 5; */ public Builder setReadTime(com.google.protobuf.Timestamp value) { if (readTimeBuilder_ == null) { if (value == null) { throw new NullPointerException(); } consistencySelector_ = value; onChanged(); } else { readTimeBuilder_.setMessage(value); } consistencySelectorCase_ = 5; return this; } /** * * *
     * Reads the version of the document at the given time.
     *
     * This must be a microsecond precision timestamp within the past one hour,
     * or if Point-in-Time Recovery is enabled, can additionally be a whole
     * minute timestamp within the past 7 days.
     * 
* * .google.protobuf.Timestamp read_time = 5; */ public Builder setReadTime(com.google.protobuf.Timestamp.Builder builderForValue) { if (readTimeBuilder_ == null) { consistencySelector_ = builderForValue.build(); onChanged(); } else { readTimeBuilder_.setMessage(builderForValue.build()); } consistencySelectorCase_ = 5; return this; } /** * * *
     * Reads the version of the document at the given time.
     *
     * This must be a microsecond precision timestamp within the past one hour,
     * or if Point-in-Time Recovery is enabled, can additionally be a whole
     * minute timestamp within the past 7 days.
     * 
* * .google.protobuf.Timestamp read_time = 5; */ public Builder mergeReadTime(com.google.protobuf.Timestamp value) { if (readTimeBuilder_ == null) { if (consistencySelectorCase_ == 5 && consistencySelector_ != com.google.protobuf.Timestamp.getDefaultInstance()) { consistencySelector_ = com.google.protobuf.Timestamp.newBuilder( (com.google.protobuf.Timestamp) consistencySelector_) .mergeFrom(value) .buildPartial(); } else { consistencySelector_ = value; } onChanged(); } else { if (consistencySelectorCase_ == 5) { readTimeBuilder_.mergeFrom(value); } else { readTimeBuilder_.setMessage(value); } } consistencySelectorCase_ = 5; return this; } /** * * *
     * Reads the version of the document at the given time.
     *
     * This must be a microsecond precision timestamp within the past one hour,
     * or if Point-in-Time Recovery is enabled, can additionally be a whole
     * minute timestamp within the past 7 days.
     * 
* * .google.protobuf.Timestamp read_time = 5; */ public Builder clearReadTime() { if (readTimeBuilder_ == null) { if (consistencySelectorCase_ == 5) { consistencySelectorCase_ = 0; consistencySelector_ = null; onChanged(); } } else { if (consistencySelectorCase_ == 5) { consistencySelectorCase_ = 0; consistencySelector_ = null; } readTimeBuilder_.clear(); } return this; } /** * * *
     * Reads the version of the document at the given time.
     *
     * This must be a microsecond precision timestamp within the past one hour,
     * or if Point-in-Time Recovery is enabled, can additionally be a whole
     * minute timestamp within the past 7 days.
     * 
* * .google.protobuf.Timestamp read_time = 5; */ public com.google.protobuf.Timestamp.Builder getReadTimeBuilder() { return getReadTimeFieldBuilder().getBuilder(); } /** * * *
     * Reads the version of the document at the given time.
     *
     * This must be a microsecond precision timestamp within the past one hour,
     * or if Point-in-Time Recovery is enabled, can additionally be a whole
     * minute timestamp within the past 7 days.
     * 
* * .google.protobuf.Timestamp read_time = 5; */ @java.lang.Override public com.google.protobuf.TimestampOrBuilder getReadTimeOrBuilder() { if ((consistencySelectorCase_ == 5) && (readTimeBuilder_ != null)) { return readTimeBuilder_.getMessageOrBuilder(); } else { if (consistencySelectorCase_ == 5) { return (com.google.protobuf.Timestamp) consistencySelector_; } return com.google.protobuf.Timestamp.getDefaultInstance(); } } /** * * *
     * Reads the version of the document at the given time.
     *
     * This must be a microsecond precision timestamp within the past one hour,
     * or if Point-in-Time Recovery is enabled, can additionally be a whole
     * minute timestamp within the past 7 days.
     * 
* * .google.protobuf.Timestamp read_time = 5; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> getReadTimeFieldBuilder() { if (readTimeBuilder_ == null) { if (!(consistencySelectorCase_ == 5)) { consistencySelector_ = com.google.protobuf.Timestamp.getDefaultInstance(); } readTimeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>( (com.google.protobuf.Timestamp) consistencySelector_, getParentForChildren(), isClean()); consistencySelector_ = null; } consistencySelectorCase_ = 5; onChanged(); return readTimeBuilder_; } @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.GetDocumentRequest) } // @@protoc_insertion_point(class_scope:google.firestore.v1.GetDocumentRequest) private static final com.google.firestore.v1.GetDocumentRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.firestore.v1.GetDocumentRequest(); } public static com.google.firestore.v1.GetDocumentRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public GetDocumentRequest 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.GetDocumentRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy