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

com.google.firestore.v1.TargetChange 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;

/**
 *
 *
 * 
 * Targets being watched have changed.
 * 
* * Protobuf type {@code google.firestore.v1.TargetChange} */ public final class TargetChange extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.firestore.v1.TargetChange) TargetChangeOrBuilder { private static final long serialVersionUID = 0L; // Use TargetChange.newBuilder() to construct. private TargetChange(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private TargetChange() { targetChangeType_ = 0; targetIds_ = emptyIntList(); resumeToken_ = com.google.protobuf.ByteString.EMPTY; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new TargetChange(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.firestore.v1.FirestoreProto .internal_static_google_firestore_v1_TargetChange_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.firestore.v1.FirestoreProto .internal_static_google_firestore_v1_TargetChange_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.firestore.v1.TargetChange.class, com.google.firestore.v1.TargetChange.Builder.class); } /** * * *
   * The type of change.
   * 
* * Protobuf enum {@code google.firestore.v1.TargetChange.TargetChangeType} */ public enum TargetChangeType implements com.google.protobuf.ProtocolMessageEnum { /** * * *
     * No change has occurred. Used only to send an updated `resume_token`.
     * 
* * NO_CHANGE = 0; */ NO_CHANGE(0), /** * * *
     * The targets have been added.
     * 
* * ADD = 1; */ ADD(1), /** * * *
     * The targets have been removed.
     * 
* * REMOVE = 2; */ REMOVE(2), /** * * *
     * The targets reflect all changes committed before the targets were added
     * to the stream.
     *
     * This will be sent after or with a `read_time` that is greater than or
     * equal to the time at which the targets were added.
     *
     * Listeners can wait for this change if read-after-write semantics
     * are desired.
     * 
* * CURRENT = 3; */ CURRENT(3), /** * * *
     * The targets have been reset, and a new initial state for the targets
     * will be returned in subsequent changes.
     *
     * After the initial state is complete, `CURRENT` will be returned even
     * if the target was previously indicated to be `CURRENT`.
     * 
* * RESET = 4; */ RESET(4), UNRECOGNIZED(-1), ; /** * * *
     * No change has occurred. Used only to send an updated `resume_token`.
     * 
* * NO_CHANGE = 0; */ public static final int NO_CHANGE_VALUE = 0; /** * * *
     * The targets have been added.
     * 
* * ADD = 1; */ public static final int ADD_VALUE = 1; /** * * *
     * The targets have been removed.
     * 
* * REMOVE = 2; */ public static final int REMOVE_VALUE = 2; /** * * *
     * The targets reflect all changes committed before the targets were added
     * to the stream.
     *
     * This will be sent after or with a `read_time` that is greater than or
     * equal to the time at which the targets were added.
     *
     * Listeners can wait for this change if read-after-write semantics
     * are desired.
     * 
* * CURRENT = 3; */ public static final int CURRENT_VALUE = 3; /** * * *
     * The targets have been reset, and a new initial state for the targets
     * will be returned in subsequent changes.
     *
     * After the initial state is complete, `CURRENT` will be returned even
     * if the target was previously indicated to be `CURRENT`.
     * 
* * RESET = 4; */ public static final int RESET_VALUE = 4; public final int getNumber() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; } /** * @param value The numeric wire value of the corresponding enum entry. * @return The enum associated with the given numeric wire value. * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static TargetChangeType valueOf(int value) { return forNumber(value); } /** * @param value The numeric wire value of the corresponding enum entry. * @return The enum associated with the given numeric wire value. */ public static TargetChangeType forNumber(int value) { switch (value) { case 0: return NO_CHANGE; case 1: return ADD; case 2: return REMOVE; case 3: return CURRENT; case 4: return RESET; default: return null; } } public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { return internalValueMap; } private static final com.google.protobuf.Internal.EnumLiteMap internalValueMap = new com.google.protobuf.Internal.EnumLiteMap() { public TargetChangeType findValueByNumber(int number) { return TargetChangeType.forNumber(number); } }; public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalStateException( "Can't get the descriptor of an unrecognized enum value."); } return getDescriptor().getValues().get(ordinal()); } public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { return getDescriptor(); } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { return com.google.firestore.v1.TargetChange.getDescriptor().getEnumTypes().get(0); } private static final TargetChangeType[] VALUES = values(); public static TargetChangeType valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { return UNRECOGNIZED; } return VALUES[desc.getIndex()]; } private final int value; private TargetChangeType(int value) { this.value = value; } // @@protoc_insertion_point(enum_scope:google.firestore.v1.TargetChange.TargetChangeType) } private int bitField0_; public static final int TARGET_CHANGE_TYPE_FIELD_NUMBER = 1; private int targetChangeType_ = 0; /** * * *
   * The type of change that occurred.
   * 
* * .google.firestore.v1.TargetChange.TargetChangeType target_change_type = 1; * * @return The enum numeric value on the wire for targetChangeType. */ @java.lang.Override public int getTargetChangeTypeValue() { return targetChangeType_; } /** * * *
   * The type of change that occurred.
   * 
* * .google.firestore.v1.TargetChange.TargetChangeType target_change_type = 1; * * @return The targetChangeType. */ @java.lang.Override public com.google.firestore.v1.TargetChange.TargetChangeType getTargetChangeType() { com.google.firestore.v1.TargetChange.TargetChangeType result = com.google.firestore.v1.TargetChange.TargetChangeType.forNumber(targetChangeType_); return result == null ? com.google.firestore.v1.TargetChange.TargetChangeType.UNRECOGNIZED : result; } public static final int TARGET_IDS_FIELD_NUMBER = 2; @SuppressWarnings("serial") private com.google.protobuf.Internal.IntList targetIds_ = emptyIntList(); /** * * *
   * The target IDs of targets that have changed.
   *
   * If empty, the change applies to all targets.
   *
   * The order of the target IDs is not defined.
   * 
* * repeated int32 target_ids = 2; * * @return A list containing the targetIds. */ @java.lang.Override public java.util.List getTargetIdsList() { return targetIds_; } /** * * *
   * The target IDs of targets that have changed.
   *
   * If empty, the change applies to all targets.
   *
   * The order of the target IDs is not defined.
   * 
* * repeated int32 target_ids = 2; * * @return The count of targetIds. */ public int getTargetIdsCount() { return targetIds_.size(); } /** * * *
   * The target IDs of targets that have changed.
   *
   * If empty, the change applies to all targets.
   *
   * The order of the target IDs is not defined.
   * 
* * repeated int32 target_ids = 2; * * @param index The index of the element to return. * @return The targetIds at the given index. */ public int getTargetIds(int index) { return targetIds_.getInt(index); } private int targetIdsMemoizedSerializedSize = -1; public static final int CAUSE_FIELD_NUMBER = 3; private com.google.rpc.Status cause_; /** * * *
   * The error that resulted in this change, if applicable.
   * 
* * .google.rpc.Status cause = 3; * * @return Whether the cause field is set. */ @java.lang.Override public boolean hasCause() { return ((bitField0_ & 0x00000001) != 0); } /** * * *
   * The error that resulted in this change, if applicable.
   * 
* * .google.rpc.Status cause = 3; * * @return The cause. */ @java.lang.Override public com.google.rpc.Status getCause() { return cause_ == null ? com.google.rpc.Status.getDefaultInstance() : cause_; } /** * * *
   * The error that resulted in this change, if applicable.
   * 
* * .google.rpc.Status cause = 3; */ @java.lang.Override public com.google.rpc.StatusOrBuilder getCauseOrBuilder() { return cause_ == null ? com.google.rpc.Status.getDefaultInstance() : cause_; } public static final int RESUME_TOKEN_FIELD_NUMBER = 4; private com.google.protobuf.ByteString resumeToken_ = com.google.protobuf.ByteString.EMPTY; /** * * *
   * A token that can be used to resume the stream for the given `target_ids`,
   * or all targets if `target_ids` is empty.
   *
   * Not set on every target change.
   * 
* * bytes resume_token = 4; * * @return The resumeToken. */ @java.lang.Override public com.google.protobuf.ByteString getResumeToken() { return resumeToken_; } public static final int READ_TIME_FIELD_NUMBER = 6; private com.google.protobuf.Timestamp readTime_; /** * * *
   * The consistent `read_time` for the given `target_ids` (omitted when the
   * target_ids are not at a consistent snapshot).
   *
   * The stream is guaranteed to send a `read_time` with `target_ids` empty
   * whenever the entire stream reaches a new consistent snapshot. ADD,
   * CURRENT, and RESET messages are guaranteed to (eventually) result in a
   * new consistent snapshot (while NO_CHANGE and REMOVE messages are not).
   *
   * For a given stream, `read_time` is guaranteed to be monotonically
   * increasing.
   * 
* * .google.protobuf.Timestamp read_time = 6; * * @return Whether the readTime field is set. */ @java.lang.Override public boolean hasReadTime() { return ((bitField0_ & 0x00000002) != 0); } /** * * *
   * The consistent `read_time` for the given `target_ids` (omitted when the
   * target_ids are not at a consistent snapshot).
   *
   * The stream is guaranteed to send a `read_time` with `target_ids` empty
   * whenever the entire stream reaches a new consistent snapshot. ADD,
   * CURRENT, and RESET messages are guaranteed to (eventually) result in a
   * new consistent snapshot (while NO_CHANGE and REMOVE messages are not).
   *
   * For a given stream, `read_time` is guaranteed to be monotonically
   * increasing.
   * 
* * .google.protobuf.Timestamp read_time = 6; * * @return The readTime. */ @java.lang.Override public com.google.protobuf.Timestamp getReadTime() { return readTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : readTime_; } /** * * *
   * The consistent `read_time` for the given `target_ids` (omitted when the
   * target_ids are not at a consistent snapshot).
   *
   * The stream is guaranteed to send a `read_time` with `target_ids` empty
   * whenever the entire stream reaches a new consistent snapshot. ADD,
   * CURRENT, and RESET messages are guaranteed to (eventually) result in a
   * new consistent snapshot (while NO_CHANGE and REMOVE messages are not).
   *
   * For a given stream, `read_time` is guaranteed to be monotonically
   * increasing.
   * 
* * .google.protobuf.Timestamp read_time = 6; */ @java.lang.Override public com.google.protobuf.TimestampOrBuilder getReadTimeOrBuilder() { return readTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : readTime_; } 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 { getSerializedSize(); if (targetChangeType_ != com.google.firestore.v1.TargetChange.TargetChangeType.NO_CHANGE.getNumber()) { output.writeEnum(1, targetChangeType_); } if (getTargetIdsList().size() > 0) { output.writeUInt32NoTag(18); output.writeUInt32NoTag(targetIdsMemoizedSerializedSize); } for (int i = 0; i < targetIds_.size(); i++) { output.writeInt32NoTag(targetIds_.getInt(i)); } if (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(3, getCause()); } if (!resumeToken_.isEmpty()) { output.writeBytes(4, resumeToken_); } if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(6, getReadTime()); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (targetChangeType_ != com.google.firestore.v1.TargetChange.TargetChangeType.NO_CHANGE.getNumber()) { size += com.google.protobuf.CodedOutputStream.computeEnumSize(1, targetChangeType_); } { int dataSize = 0; for (int i = 0; i < targetIds_.size(); i++) { dataSize += com.google.protobuf.CodedOutputStream.computeInt32SizeNoTag(targetIds_.getInt(i)); } size += dataSize; if (!getTargetIdsList().isEmpty()) { size += 1; size += com.google.protobuf.CodedOutputStream.computeInt32SizeNoTag(dataSize); } targetIdsMemoizedSerializedSize = dataSize; } if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(3, getCause()); } if (!resumeToken_.isEmpty()) { size += com.google.protobuf.CodedOutputStream.computeBytesSize(4, resumeToken_); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(6, getReadTime()); } 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.TargetChange)) { return super.equals(obj); } com.google.firestore.v1.TargetChange other = (com.google.firestore.v1.TargetChange) obj; if (targetChangeType_ != other.targetChangeType_) return false; if (!getTargetIdsList().equals(other.getTargetIdsList())) return false; if (hasCause() != other.hasCause()) return false; if (hasCause()) { if (!getCause().equals(other.getCause())) return false; } if (!getResumeToken().equals(other.getResumeToken())) return false; if (hasReadTime() != other.hasReadTime()) return false; if (hasReadTime()) { if (!getReadTime().equals(other.getReadTime())) 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(); hash = (37 * hash) + TARGET_CHANGE_TYPE_FIELD_NUMBER; hash = (53 * hash) + targetChangeType_; if (getTargetIdsCount() > 0) { hash = (37 * hash) + TARGET_IDS_FIELD_NUMBER; hash = (53 * hash) + getTargetIdsList().hashCode(); } if (hasCause()) { hash = (37 * hash) + CAUSE_FIELD_NUMBER; hash = (53 * hash) + getCause().hashCode(); } hash = (37 * hash) + RESUME_TOKEN_FIELD_NUMBER; hash = (53 * hash) + getResumeToken().hashCode(); if (hasReadTime()) { hash = (37 * hash) + READ_TIME_FIELD_NUMBER; hash = (53 * hash) + getReadTime().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.firestore.v1.TargetChange parseFrom(java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.firestore.v1.TargetChange 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.TargetChange parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.firestore.v1.TargetChange 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.TargetChange parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.firestore.v1.TargetChange parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.firestore.v1.TargetChange parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.firestore.v1.TargetChange 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.TargetChange parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.firestore.v1.TargetChange 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.TargetChange parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.firestore.v1.TargetChange 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.TargetChange 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; } /** * * *
   * Targets being watched have changed.
   * 
* * Protobuf type {@code google.firestore.v1.TargetChange} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.firestore.v1.TargetChange) com.google.firestore.v1.TargetChangeOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.firestore.v1.FirestoreProto .internal_static_google_firestore_v1_TargetChange_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.firestore.v1.FirestoreProto .internal_static_google_firestore_v1_TargetChange_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.firestore.v1.TargetChange.class, com.google.firestore.v1.TargetChange.Builder.class); } // Construct using com.google.firestore.v1.TargetChange.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { getCauseFieldBuilder(); getReadTimeFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; targetChangeType_ = 0; targetIds_ = emptyIntList(); cause_ = null; if (causeBuilder_ != null) { causeBuilder_.dispose(); causeBuilder_ = null; } resumeToken_ = com.google.protobuf.ByteString.EMPTY; readTime_ = null; if (readTimeBuilder_ != null) { readTimeBuilder_.dispose(); readTimeBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.firestore.v1.FirestoreProto .internal_static_google_firestore_v1_TargetChange_descriptor; } @java.lang.Override public com.google.firestore.v1.TargetChange getDefaultInstanceForType() { return com.google.firestore.v1.TargetChange.getDefaultInstance(); } @java.lang.Override public com.google.firestore.v1.TargetChange build() { com.google.firestore.v1.TargetChange result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.firestore.v1.TargetChange buildPartial() { com.google.firestore.v1.TargetChange result = new com.google.firestore.v1.TargetChange(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.google.firestore.v1.TargetChange result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.targetChangeType_ = targetChangeType_; } if (((from_bitField0_ & 0x00000002) != 0)) { targetIds_.makeImmutable(); result.targetIds_ = targetIds_; } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000004) != 0)) { result.cause_ = causeBuilder_ == null ? cause_ : causeBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000008) != 0)) { result.resumeToken_ = resumeToken_; } if (((from_bitField0_ & 0x00000010) != 0)) { result.readTime_ = readTimeBuilder_ == null ? readTime_ : readTimeBuilder_.build(); to_bitField0_ |= 0x00000002; } 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.TargetChange) { return mergeFrom((com.google.firestore.v1.TargetChange) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.firestore.v1.TargetChange other) { if (other == com.google.firestore.v1.TargetChange.getDefaultInstance()) return this; if (other.targetChangeType_ != 0) { setTargetChangeTypeValue(other.getTargetChangeTypeValue()); } if (!other.targetIds_.isEmpty()) { if (targetIds_.isEmpty()) { targetIds_ = other.targetIds_; targetIds_.makeImmutable(); bitField0_ |= 0x00000002; } else { ensureTargetIdsIsMutable(); targetIds_.addAll(other.targetIds_); } onChanged(); } if (other.hasCause()) { mergeCause(other.getCause()); } if (other.getResumeToken() != com.google.protobuf.ByteString.EMPTY) { setResumeToken(other.getResumeToken()); } if (other.hasReadTime()) { mergeReadTime(other.getReadTime()); } 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 8: { targetChangeType_ = input.readEnum(); bitField0_ |= 0x00000001; break; } // case 8 case 16: { int v = input.readInt32(); ensureTargetIdsIsMutable(); targetIds_.addInt(v); break; } // case 16 case 18: { int length = input.readRawVarint32(); int limit = input.pushLimit(length); ensureTargetIdsIsMutable(); while (input.getBytesUntilLimit() > 0) { targetIds_.addInt(input.readInt32()); } input.popLimit(limit); break; } // case 18 case 26: { input.readMessage(getCauseFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000004; break; } // case 26 case 34: { resumeToken_ = input.readBytes(); bitField0_ |= 0x00000008; break; } // case 34 case 50: { input.readMessage(getReadTimeFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000010; break; } // case 50 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 int targetChangeType_ = 0; /** * * *
     * The type of change that occurred.
     * 
* * .google.firestore.v1.TargetChange.TargetChangeType target_change_type = 1; * * @return The enum numeric value on the wire for targetChangeType. */ @java.lang.Override public int getTargetChangeTypeValue() { return targetChangeType_; } /** * * *
     * The type of change that occurred.
     * 
* * .google.firestore.v1.TargetChange.TargetChangeType target_change_type = 1; * * @param value The enum numeric value on the wire for targetChangeType to set. * @return This builder for chaining. */ public Builder setTargetChangeTypeValue(int value) { targetChangeType_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * * *
     * The type of change that occurred.
     * 
* * .google.firestore.v1.TargetChange.TargetChangeType target_change_type = 1; * * @return The targetChangeType. */ @java.lang.Override public com.google.firestore.v1.TargetChange.TargetChangeType getTargetChangeType() { com.google.firestore.v1.TargetChange.TargetChangeType result = com.google.firestore.v1.TargetChange.TargetChangeType.forNumber(targetChangeType_); return result == null ? com.google.firestore.v1.TargetChange.TargetChangeType.UNRECOGNIZED : result; } /** * * *
     * The type of change that occurred.
     * 
* * .google.firestore.v1.TargetChange.TargetChangeType target_change_type = 1; * * @param value The targetChangeType to set. * @return This builder for chaining. */ public Builder setTargetChangeType( com.google.firestore.v1.TargetChange.TargetChangeType value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000001; targetChangeType_ = value.getNumber(); onChanged(); return this; } /** * * *
     * The type of change that occurred.
     * 
* * .google.firestore.v1.TargetChange.TargetChangeType target_change_type = 1; * * @return This builder for chaining. */ public Builder clearTargetChangeType() { bitField0_ = (bitField0_ & ~0x00000001); targetChangeType_ = 0; onChanged(); return this; } private com.google.protobuf.Internal.IntList targetIds_ = emptyIntList(); private void ensureTargetIdsIsMutable() { if (!targetIds_.isModifiable()) { targetIds_ = makeMutableCopy(targetIds_); } bitField0_ |= 0x00000002; } /** * * *
     * The target IDs of targets that have changed.
     *
     * If empty, the change applies to all targets.
     *
     * The order of the target IDs is not defined.
     * 
* * repeated int32 target_ids = 2; * * @return A list containing the targetIds. */ public java.util.List getTargetIdsList() { targetIds_.makeImmutable(); return targetIds_; } /** * * *
     * The target IDs of targets that have changed.
     *
     * If empty, the change applies to all targets.
     *
     * The order of the target IDs is not defined.
     * 
* * repeated int32 target_ids = 2; * * @return The count of targetIds. */ public int getTargetIdsCount() { return targetIds_.size(); } /** * * *
     * The target IDs of targets that have changed.
     *
     * If empty, the change applies to all targets.
     *
     * The order of the target IDs is not defined.
     * 
* * repeated int32 target_ids = 2; * * @param index The index of the element to return. * @return The targetIds at the given index. */ public int getTargetIds(int index) { return targetIds_.getInt(index); } /** * * *
     * The target IDs of targets that have changed.
     *
     * If empty, the change applies to all targets.
     *
     * The order of the target IDs is not defined.
     * 
* * repeated int32 target_ids = 2; * * @param index The index to set the value at. * @param value The targetIds to set. * @return This builder for chaining. */ public Builder setTargetIds(int index, int value) { ensureTargetIdsIsMutable(); targetIds_.setInt(index, value); bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * The target IDs of targets that have changed.
     *
     * If empty, the change applies to all targets.
     *
     * The order of the target IDs is not defined.
     * 
* * repeated int32 target_ids = 2; * * @param value The targetIds to add. * @return This builder for chaining. */ public Builder addTargetIds(int value) { ensureTargetIdsIsMutable(); targetIds_.addInt(value); bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * The target IDs of targets that have changed.
     *
     * If empty, the change applies to all targets.
     *
     * The order of the target IDs is not defined.
     * 
* * repeated int32 target_ids = 2; * * @param values The targetIds to add. * @return This builder for chaining. */ public Builder addAllTargetIds(java.lang.Iterable values) { ensureTargetIdsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll(values, targetIds_); bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * The target IDs of targets that have changed.
     *
     * If empty, the change applies to all targets.
     *
     * The order of the target IDs is not defined.
     * 
* * repeated int32 target_ids = 2; * * @return This builder for chaining. */ public Builder clearTargetIds() { targetIds_ = emptyIntList(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } private com.google.rpc.Status cause_; private com.google.protobuf.SingleFieldBuilderV3< com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder> causeBuilder_; /** * * *
     * The error that resulted in this change, if applicable.
     * 
* * .google.rpc.Status cause = 3; * * @return Whether the cause field is set. */ public boolean hasCause() { return ((bitField0_ & 0x00000004) != 0); } /** * * *
     * The error that resulted in this change, if applicable.
     * 
* * .google.rpc.Status cause = 3; * * @return The cause. */ public com.google.rpc.Status getCause() { if (causeBuilder_ == null) { return cause_ == null ? com.google.rpc.Status.getDefaultInstance() : cause_; } else { return causeBuilder_.getMessage(); } } /** * * *
     * The error that resulted in this change, if applicable.
     * 
* * .google.rpc.Status cause = 3; */ public Builder setCause(com.google.rpc.Status value) { if (causeBuilder_ == null) { if (value == null) { throw new NullPointerException(); } cause_ = value; } else { causeBuilder_.setMessage(value); } bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * The error that resulted in this change, if applicable.
     * 
* * .google.rpc.Status cause = 3; */ public Builder setCause(com.google.rpc.Status.Builder builderForValue) { if (causeBuilder_ == null) { cause_ = builderForValue.build(); } else { causeBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * The error that resulted in this change, if applicable.
     * 
* * .google.rpc.Status cause = 3; */ public Builder mergeCause(com.google.rpc.Status value) { if (causeBuilder_ == null) { if (((bitField0_ & 0x00000004) != 0) && cause_ != null && cause_ != com.google.rpc.Status.getDefaultInstance()) { getCauseBuilder().mergeFrom(value); } else { cause_ = value; } } else { causeBuilder_.mergeFrom(value); } if (cause_ != null) { bitField0_ |= 0x00000004; onChanged(); } return this; } /** * * *
     * The error that resulted in this change, if applicable.
     * 
* * .google.rpc.Status cause = 3; */ public Builder clearCause() { bitField0_ = (bitField0_ & ~0x00000004); cause_ = null; if (causeBuilder_ != null) { causeBuilder_.dispose(); causeBuilder_ = null; } onChanged(); return this; } /** * * *
     * The error that resulted in this change, if applicable.
     * 
* * .google.rpc.Status cause = 3; */ public com.google.rpc.Status.Builder getCauseBuilder() { bitField0_ |= 0x00000004; onChanged(); return getCauseFieldBuilder().getBuilder(); } /** * * *
     * The error that resulted in this change, if applicable.
     * 
* * .google.rpc.Status cause = 3; */ public com.google.rpc.StatusOrBuilder getCauseOrBuilder() { if (causeBuilder_ != null) { return causeBuilder_.getMessageOrBuilder(); } else { return cause_ == null ? com.google.rpc.Status.getDefaultInstance() : cause_; } } /** * * *
     * The error that resulted in this change, if applicable.
     * 
* * .google.rpc.Status cause = 3; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder> getCauseFieldBuilder() { if (causeBuilder_ == null) { causeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder>(getCause(), getParentForChildren(), isClean()); cause_ = null; } return causeBuilder_; } private com.google.protobuf.ByteString resumeToken_ = com.google.protobuf.ByteString.EMPTY; /** * * *
     * A token that can be used to resume the stream for the given `target_ids`,
     * or all targets if `target_ids` is empty.
     *
     * Not set on every target change.
     * 
* * bytes resume_token = 4; * * @return The resumeToken. */ @java.lang.Override public com.google.protobuf.ByteString getResumeToken() { return resumeToken_; } /** * * *
     * A token that can be used to resume the stream for the given `target_ids`,
     * or all targets if `target_ids` is empty.
     *
     * Not set on every target change.
     * 
* * bytes resume_token = 4; * * @param value The resumeToken to set. * @return This builder for chaining. */ public Builder setResumeToken(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } resumeToken_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** * * *
     * A token that can be used to resume the stream for the given `target_ids`,
     * or all targets if `target_ids` is empty.
     *
     * Not set on every target change.
     * 
* * bytes resume_token = 4; * * @return This builder for chaining. */ public Builder clearResumeToken() { bitField0_ = (bitField0_ & ~0x00000008); resumeToken_ = getDefaultInstance().getResumeToken(); onChanged(); return this; } private com.google.protobuf.Timestamp readTime_; private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> readTimeBuilder_; /** * * *
     * The consistent `read_time` for the given `target_ids` (omitted when the
     * target_ids are not at a consistent snapshot).
     *
     * The stream is guaranteed to send a `read_time` with `target_ids` empty
     * whenever the entire stream reaches a new consistent snapshot. ADD,
     * CURRENT, and RESET messages are guaranteed to (eventually) result in a
     * new consistent snapshot (while NO_CHANGE and REMOVE messages are not).
     *
     * For a given stream, `read_time` is guaranteed to be monotonically
     * increasing.
     * 
* * .google.protobuf.Timestamp read_time = 6; * * @return Whether the readTime field is set. */ public boolean hasReadTime() { return ((bitField0_ & 0x00000010) != 0); } /** * * *
     * The consistent `read_time` for the given `target_ids` (omitted when the
     * target_ids are not at a consistent snapshot).
     *
     * The stream is guaranteed to send a `read_time` with `target_ids` empty
     * whenever the entire stream reaches a new consistent snapshot. ADD,
     * CURRENT, and RESET messages are guaranteed to (eventually) result in a
     * new consistent snapshot (while NO_CHANGE and REMOVE messages are not).
     *
     * For a given stream, `read_time` is guaranteed to be monotonically
     * increasing.
     * 
* * .google.protobuf.Timestamp read_time = 6; * * @return The readTime. */ public com.google.protobuf.Timestamp getReadTime() { if (readTimeBuilder_ == null) { return readTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : readTime_; } else { return readTimeBuilder_.getMessage(); } } /** * * *
     * The consistent `read_time` for the given `target_ids` (omitted when the
     * target_ids are not at a consistent snapshot).
     *
     * The stream is guaranteed to send a `read_time` with `target_ids` empty
     * whenever the entire stream reaches a new consistent snapshot. ADD,
     * CURRENT, and RESET messages are guaranteed to (eventually) result in a
     * new consistent snapshot (while NO_CHANGE and REMOVE messages are not).
     *
     * For a given stream, `read_time` is guaranteed to be monotonically
     * increasing.
     * 
* * .google.protobuf.Timestamp read_time = 6; */ public Builder setReadTime(com.google.protobuf.Timestamp value) { if (readTimeBuilder_ == null) { if (value == null) { throw new NullPointerException(); } readTime_ = value; } else { readTimeBuilder_.setMessage(value); } bitField0_ |= 0x00000010; onChanged(); return this; } /** * * *
     * The consistent `read_time` for the given `target_ids` (omitted when the
     * target_ids are not at a consistent snapshot).
     *
     * The stream is guaranteed to send a `read_time` with `target_ids` empty
     * whenever the entire stream reaches a new consistent snapshot. ADD,
     * CURRENT, and RESET messages are guaranteed to (eventually) result in a
     * new consistent snapshot (while NO_CHANGE and REMOVE messages are not).
     *
     * For a given stream, `read_time` is guaranteed to be monotonically
     * increasing.
     * 
* * .google.protobuf.Timestamp read_time = 6; */ public Builder setReadTime(com.google.protobuf.Timestamp.Builder builderForValue) { if (readTimeBuilder_ == null) { readTime_ = builderForValue.build(); } else { readTimeBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000010; onChanged(); return this; } /** * * *
     * The consistent `read_time` for the given `target_ids` (omitted when the
     * target_ids are not at a consistent snapshot).
     *
     * The stream is guaranteed to send a `read_time` with `target_ids` empty
     * whenever the entire stream reaches a new consistent snapshot. ADD,
     * CURRENT, and RESET messages are guaranteed to (eventually) result in a
     * new consistent snapshot (while NO_CHANGE and REMOVE messages are not).
     *
     * For a given stream, `read_time` is guaranteed to be monotonically
     * increasing.
     * 
* * .google.protobuf.Timestamp read_time = 6; */ public Builder mergeReadTime(com.google.protobuf.Timestamp value) { if (readTimeBuilder_ == null) { if (((bitField0_ & 0x00000010) != 0) && readTime_ != null && readTime_ != com.google.protobuf.Timestamp.getDefaultInstance()) { getReadTimeBuilder().mergeFrom(value); } else { readTime_ = value; } } else { readTimeBuilder_.mergeFrom(value); } if (readTime_ != null) { bitField0_ |= 0x00000010; onChanged(); } return this; } /** * * *
     * The consistent `read_time` for the given `target_ids` (omitted when the
     * target_ids are not at a consistent snapshot).
     *
     * The stream is guaranteed to send a `read_time` with `target_ids` empty
     * whenever the entire stream reaches a new consistent snapshot. ADD,
     * CURRENT, and RESET messages are guaranteed to (eventually) result in a
     * new consistent snapshot (while NO_CHANGE and REMOVE messages are not).
     *
     * For a given stream, `read_time` is guaranteed to be monotonically
     * increasing.
     * 
* * .google.protobuf.Timestamp read_time = 6; */ public Builder clearReadTime() { bitField0_ = (bitField0_ & ~0x00000010); readTime_ = null; if (readTimeBuilder_ != null) { readTimeBuilder_.dispose(); readTimeBuilder_ = null; } onChanged(); return this; } /** * * *
     * The consistent `read_time` for the given `target_ids` (omitted when the
     * target_ids are not at a consistent snapshot).
     *
     * The stream is guaranteed to send a `read_time` with `target_ids` empty
     * whenever the entire stream reaches a new consistent snapshot. ADD,
     * CURRENT, and RESET messages are guaranteed to (eventually) result in a
     * new consistent snapshot (while NO_CHANGE and REMOVE messages are not).
     *
     * For a given stream, `read_time` is guaranteed to be monotonically
     * increasing.
     * 
* * .google.protobuf.Timestamp read_time = 6; */ public com.google.protobuf.Timestamp.Builder getReadTimeBuilder() { bitField0_ |= 0x00000010; onChanged(); return getReadTimeFieldBuilder().getBuilder(); } /** * * *
     * The consistent `read_time` for the given `target_ids` (omitted when the
     * target_ids are not at a consistent snapshot).
     *
     * The stream is guaranteed to send a `read_time` with `target_ids` empty
     * whenever the entire stream reaches a new consistent snapshot. ADD,
     * CURRENT, and RESET messages are guaranteed to (eventually) result in a
     * new consistent snapshot (while NO_CHANGE and REMOVE messages are not).
     *
     * For a given stream, `read_time` is guaranteed to be monotonically
     * increasing.
     * 
* * .google.protobuf.Timestamp read_time = 6; */ public com.google.protobuf.TimestampOrBuilder getReadTimeOrBuilder() { if (readTimeBuilder_ != null) { return readTimeBuilder_.getMessageOrBuilder(); } else { return readTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : readTime_; } } /** * * *
     * The consistent `read_time` for the given `target_ids` (omitted when the
     * target_ids are not at a consistent snapshot).
     *
     * The stream is guaranteed to send a `read_time` with `target_ids` empty
     * whenever the entire stream reaches a new consistent snapshot. ADD,
     * CURRENT, and RESET messages are guaranteed to (eventually) result in a
     * new consistent snapshot (while NO_CHANGE and REMOVE messages are not).
     *
     * For a given stream, `read_time` is guaranteed to be monotonically
     * increasing.
     * 
* * .google.protobuf.Timestamp read_time = 6; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder> getReadTimeFieldBuilder() { if (readTimeBuilder_ == null) { readTimeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Timestamp, com.google.protobuf.Timestamp.Builder, com.google.protobuf.TimestampOrBuilder>( getReadTime(), getParentForChildren(), isClean()); readTime_ = null; } 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.TargetChange) } // @@protoc_insertion_point(class_scope:google.firestore.v1.TargetChange) private static final com.google.firestore.v1.TargetChange DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.firestore.v1.TargetChange(); } public static com.google.firestore.v1.TargetChange getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public TargetChange 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.TargetChange getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy