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

nl.topicus.jdbc.shaded.com.google.api.ConfigChange Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/api/config_change.proto

package nl.topicus.jdbc.shaded.com.google.api;

/**
 * 
 * Output generated from semantically comparing two versions of a service
 * configuration.
 * Includes detailed information about a field that have changed with
 * applicable advice about potential consequences for the change, such as
 * backwards-incompatibility.
 * 
* * Protobuf type {@code google.api.ConfigChange} */ public final class ConfigChange extends nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.api.ConfigChange) ConfigChangeOrBuilder { private static final long serialVersionUID = 0L; // Use ConfigChange.newBuilder() to construct. private ConfigChange(nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private ConfigChange() { element_ = ""; oldValue_ = ""; newValue_ = ""; changeType_ = 0; advices_ = java.util.Collections.emptyList(); } @java.lang.Override public final nl.topicus.jdbc.shaded.com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private ConfigChange( nl.topicus.jdbc.shaded.com.google.protobuf.CodedInputStream input, nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException { this(); int mutable_bitField0_ = 0; nl.topicus.jdbc.shaded.com.google.protobuf.UnknownFieldSet.Builder unknownFields = nl.topicus.jdbc.shaded.com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; default: { if (!parseUnknownFieldProto3( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } case 10: { java.lang.String s = input.readStringRequireUtf8(); element_ = s; break; } case 18: { java.lang.String s = input.readStringRequireUtf8(); oldValue_ = s; break; } case 26: { java.lang.String s = input.readStringRequireUtf8(); newValue_ = s; break; } case 32: { int rawValue = input.readEnum(); changeType_ = rawValue; break; } case 42: { if (!((mutable_bitField0_ & 0x00000010) == 0x00000010)) { advices_ = new java.util.ArrayList(); mutable_bitField0_ |= 0x00000010; } advices_.add( input.readMessage(nl.topicus.jdbc.shaded.com.google.api.Advice.parser(), extensionRegistry)); break; } } } } catch (nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { if (((mutable_bitField0_ & 0x00000010) == 0x00000010)) { advices_ = java.util.Collections.unmodifiableList(advices_); } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.Descriptor getDescriptor() { return nl.topicus.jdbc.shaded.com.google.api.ConfigChangeProto.internal_static_google_api_ConfigChange_descriptor; } protected nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return nl.topicus.jdbc.shaded.com.google.api.ConfigChangeProto.internal_static_google_api_ConfigChange_fieldAccessorTable .ensureFieldAccessorsInitialized( nl.topicus.jdbc.shaded.com.google.api.ConfigChange.class, nl.topicus.jdbc.shaded.com.google.api.ConfigChange.Builder.class); } private int bitField0_; public static final int ELEMENT_FIELD_NUMBER = 1; private volatile java.lang.Object element_; /** *
   * Object hierarchy path to the change, with levels separated by a '.'
   * character. For repeated fields, an applicable unique identifier field is
   * used for the index (usually selector, name, or id). For maps, the term
   * 'key' is used. If the field has no unique identifier, the numeric index
   * is used.
   * Examples:
   * - visibility.rules[selector=="google.LibraryService.CreateBook"].restriction
   * - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
   * - logging.producer_destinations[0]
   * 
* * string element = 1; */ public java.lang.String getElement() { java.lang.Object ref = element_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { nl.topicus.jdbc.shaded.com.google.protobuf.ByteString bs = (nl.topicus.jdbc.shaded.com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); element_ = s; return s; } } /** *
   * Object hierarchy path to the change, with levels separated by a '.'
   * character. For repeated fields, an applicable unique identifier field is
   * used for the index (usually selector, name, or id). For maps, the term
   * 'key' is used. If the field has no unique identifier, the numeric index
   * is used.
   * Examples:
   * - visibility.rules[selector=="google.LibraryService.CreateBook"].restriction
   * - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
   * - logging.producer_destinations[0]
   * 
* * string element = 1; */ public nl.topicus.jdbc.shaded.com.google.protobuf.ByteString getElementBytes() { java.lang.Object ref = element_; if (ref instanceof java.lang.String) { nl.topicus.jdbc.shaded.com.google.protobuf.ByteString b = nl.topicus.jdbc.shaded.com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); element_ = b; return b; } else { return (nl.topicus.jdbc.shaded.com.google.protobuf.ByteString) ref; } } public static final int OLD_VALUE_FIELD_NUMBER = 2; private volatile java.lang.Object oldValue_; /** *
   * Value of the changed object in the old Service configuration,
   * in JSON format. This field will not be populated if ChangeType == ADDED.
   * 
* * string old_value = 2; */ public java.lang.String getOldValue() { java.lang.Object ref = oldValue_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { nl.topicus.jdbc.shaded.com.google.protobuf.ByteString bs = (nl.topicus.jdbc.shaded.com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); oldValue_ = s; return s; } } /** *
   * Value of the changed object in the old Service configuration,
   * in JSON format. This field will not be populated if ChangeType == ADDED.
   * 
* * string old_value = 2; */ public nl.topicus.jdbc.shaded.com.google.protobuf.ByteString getOldValueBytes() { java.lang.Object ref = oldValue_; if (ref instanceof java.lang.String) { nl.topicus.jdbc.shaded.com.google.protobuf.ByteString b = nl.topicus.jdbc.shaded.com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); oldValue_ = b; return b; } else { return (nl.topicus.jdbc.shaded.com.google.protobuf.ByteString) ref; } } public static final int NEW_VALUE_FIELD_NUMBER = 3; private volatile java.lang.Object newValue_; /** *
   * Value of the changed object in the new Service configuration,
   * in JSON format. This field will not be populated if ChangeType == REMOVED.
   * 
* * string new_value = 3; */ public java.lang.String getNewValue() { java.lang.Object ref = newValue_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { nl.topicus.jdbc.shaded.com.google.protobuf.ByteString bs = (nl.topicus.jdbc.shaded.com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); newValue_ = s; return s; } } /** *
   * Value of the changed object in the new Service configuration,
   * in JSON format. This field will not be populated if ChangeType == REMOVED.
   * 
* * string new_value = 3; */ public nl.topicus.jdbc.shaded.com.google.protobuf.ByteString getNewValueBytes() { java.lang.Object ref = newValue_; if (ref instanceof java.lang.String) { nl.topicus.jdbc.shaded.com.google.protobuf.ByteString b = nl.topicus.jdbc.shaded.com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); newValue_ = b; return b; } else { return (nl.topicus.jdbc.shaded.com.google.protobuf.ByteString) ref; } } public static final int CHANGE_TYPE_FIELD_NUMBER = 4; private int changeType_; /** *
   * The type for this change, either ADDED, REMOVED, or MODIFIED.
   * 
* * .google.api.ChangeType change_type = 4; */ public int getChangeTypeValue() { return changeType_; } /** *
   * The type for this change, either ADDED, REMOVED, or MODIFIED.
   * 
* * .google.api.ChangeType change_type = 4; */ public nl.topicus.jdbc.shaded.com.google.api.ChangeType getChangeType() { nl.topicus.jdbc.shaded.com.google.api.ChangeType result = nl.topicus.jdbc.shaded.com.google.api.ChangeType.valueOf(changeType_); return result == null ? nl.topicus.jdbc.shaded.com.google.api.ChangeType.UNRECOGNIZED : result; } public static final int ADVICES_FIELD_NUMBER = 5; private java.util.List advices_; /** *
   * Collection of advice provided for this change, useful for determining the
   * possible impact of this change.
   * 
* * repeated .google.api.Advice advices = 5; */ public java.util.List getAdvicesList() { return advices_; } /** *
   * Collection of advice provided for this change, useful for determining the
   * possible impact of this change.
   * 
* * repeated .google.api.Advice advices = 5; */ public java.util.List getAdvicesOrBuilderList() { return advices_; } /** *
   * Collection of advice provided for this change, useful for determining the
   * possible impact of this change.
   * 
* * repeated .google.api.Advice advices = 5; */ public int getAdvicesCount() { return advices_.size(); } /** *
   * Collection of advice provided for this change, useful for determining the
   * possible impact of this change.
   * 
* * repeated .google.api.Advice advices = 5; */ public nl.topicus.jdbc.shaded.com.google.api.Advice getAdvices(int index) { return advices_.get(index); } /** *
   * Collection of advice provided for this change, useful for determining the
   * possible impact of this change.
   * 
* * repeated .google.api.Advice advices = 5; */ public nl.topicus.jdbc.shaded.com.google.api.AdviceOrBuilder getAdvicesOrBuilder( int index) { return advices_.get(index); } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } public void writeTo(nl.topicus.jdbc.shaded.com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!getElementBytes().isEmpty()) { nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.writeString(output, 1, element_); } if (!getOldValueBytes().isEmpty()) { nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.writeString(output, 2, oldValue_); } if (!getNewValueBytes().isEmpty()) { nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.writeString(output, 3, newValue_); } if (changeType_ != nl.topicus.jdbc.shaded.com.google.api.ChangeType.CHANGE_TYPE_UNSPECIFIED.getNumber()) { output.writeEnum(4, changeType_); } for (int i = 0; i < advices_.size(); i++) { output.writeMessage(5, advices_.get(i)); } unknownFields.writeTo(output); } public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!getElementBytes().isEmpty()) { size += nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.computeStringSize(1, element_); } if (!getOldValueBytes().isEmpty()) { size += nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.computeStringSize(2, oldValue_); } if (!getNewValueBytes().isEmpty()) { size += nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.computeStringSize(3, newValue_); } if (changeType_ != nl.topicus.jdbc.shaded.com.google.api.ChangeType.CHANGE_TYPE_UNSPECIFIED.getNumber()) { size += nl.topicus.jdbc.shaded.com.google.protobuf.CodedOutputStream .computeEnumSize(4, changeType_); } for (int i = 0; i < advices_.size(); i++) { size += nl.topicus.jdbc.shaded.com.google.protobuf.CodedOutputStream .computeMessageSize(5, advices_.get(i)); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof nl.topicus.jdbc.shaded.com.google.api.ConfigChange)) { return super.equals(obj); } nl.topicus.jdbc.shaded.com.google.api.ConfigChange other = (nl.topicus.jdbc.shaded.com.google.api.ConfigChange) obj; boolean result = true; result = result && getElement() .equals(other.getElement()); result = result && getOldValue() .equals(other.getOldValue()); result = result && getNewValue() .equals(other.getNewValue()); result = result && changeType_ == other.changeType_; result = result && getAdvicesList() .equals(other.getAdvicesList()); result = result && unknownFields.equals(other.unknownFields); return result; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + ELEMENT_FIELD_NUMBER; hash = (53 * hash) + getElement().hashCode(); hash = (37 * hash) + OLD_VALUE_FIELD_NUMBER; hash = (53 * hash) + getOldValue().hashCode(); hash = (37 * hash) + NEW_VALUE_FIELD_NUMBER; hash = (53 * hash) + getNewValue().hashCode(); hash = (37 * hash) + CHANGE_TYPE_FIELD_NUMBER; hash = (53 * hash) + changeType_; if (getAdvicesCount() > 0) { hash = (37 * hash) + ADVICES_FIELD_NUMBER; hash = (53 * hash) + getAdvicesList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static nl.topicus.jdbc.shaded.com.google.api.ConfigChange parseFrom( java.nio.ByteBuffer data) throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static nl.topicus.jdbc.shaded.com.google.api.ConfigChange parseFrom( java.nio.ByteBuffer data, nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static nl.topicus.jdbc.shaded.com.google.api.ConfigChange parseFrom( nl.topicus.jdbc.shaded.com.google.protobuf.ByteString data) throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static nl.topicus.jdbc.shaded.com.google.api.ConfigChange parseFrom( nl.topicus.jdbc.shaded.com.google.protobuf.ByteString data, nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static nl.topicus.jdbc.shaded.com.google.api.ConfigChange parseFrom(byte[] data) throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static nl.topicus.jdbc.shaded.com.google.api.ConfigChange parseFrom( byte[] data, nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static nl.topicus.jdbc.shaded.com.google.api.ConfigChange parseFrom(java.io.InputStream input) throws java.io.IOException { return nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static nl.topicus.jdbc.shaded.com.google.api.ConfigChange parseFrom( java.io.InputStream input, nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static nl.topicus.jdbc.shaded.com.google.api.ConfigChange parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static nl.topicus.jdbc.shaded.com.google.api.ConfigChange parseDelimitedFrom( java.io.InputStream input, nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static nl.topicus.jdbc.shaded.com.google.api.ConfigChange parseFrom( nl.topicus.jdbc.shaded.com.google.protobuf.CodedInputStream input) throws java.io.IOException { return nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static nl.topicus.jdbc.shaded.com.google.api.ConfigChange parseFrom( nl.topicus.jdbc.shaded.com.google.protobuf.CodedInputStream input, nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(nl.topicus.jdbc.shaded.com.google.api.ConfigChange prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * Output generated from semantically comparing two versions of a service
   * configuration.
   * Includes detailed information about a field that have changed with
   * applicable advice about potential consequences for the change, such as
   * backwards-incompatibility.
   * 
* * Protobuf type {@code google.api.ConfigChange} */ public static final class Builder extends nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.api.ConfigChange) nl.topicus.jdbc.shaded.com.google.api.ConfigChangeOrBuilder { public static final nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.Descriptor getDescriptor() { return nl.topicus.jdbc.shaded.com.google.api.ConfigChangeProto.internal_static_google_api_ConfigChange_descriptor; } protected nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return nl.topicus.jdbc.shaded.com.google.api.ConfigChangeProto.internal_static_google_api_ConfigChange_fieldAccessorTable .ensureFieldAccessorsInitialized( nl.topicus.jdbc.shaded.com.google.api.ConfigChange.class, nl.topicus.jdbc.shaded.com.google.api.ConfigChange.Builder.class); } // Construct using nl.topicus.jdbc.shaded.com.google.api.ConfigChange.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getAdvicesFieldBuilder(); } } public Builder clear() { super.clear(); element_ = ""; oldValue_ = ""; newValue_ = ""; changeType_ = 0; if (advicesBuilder_ == null) { advices_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000010); } else { advicesBuilder_.clear(); } return this; } public nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return nl.topicus.jdbc.shaded.com.google.api.ConfigChangeProto.internal_static_google_api_ConfigChange_descriptor; } public nl.topicus.jdbc.shaded.com.google.api.ConfigChange getDefaultInstanceForType() { return nl.topicus.jdbc.shaded.com.google.api.ConfigChange.getDefaultInstance(); } public nl.topicus.jdbc.shaded.com.google.api.ConfigChange build() { nl.topicus.jdbc.shaded.com.google.api.ConfigChange result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } public nl.topicus.jdbc.shaded.com.google.api.ConfigChange buildPartial() { nl.topicus.jdbc.shaded.com.google.api.ConfigChange result = new nl.topicus.jdbc.shaded.com.google.api.ConfigChange(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; result.element_ = element_; result.oldValue_ = oldValue_; result.newValue_ = newValue_; result.changeType_ = changeType_; if (advicesBuilder_ == null) { if (((bitField0_ & 0x00000010) == 0x00000010)) { advices_ = java.util.Collections.unmodifiableList(advices_); bitField0_ = (bitField0_ & ~0x00000010); } result.advices_ = advices_; } else { result.advices_ = advicesBuilder_.build(); } result.bitField0_ = to_bitField0_; onBuilt(); return result; } public Builder clone() { return (Builder) super.clone(); } public Builder setField( nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.setField(field, value); } public Builder clearField( nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.FieldDescriptor field) { return (Builder) super.clearField(field); } public Builder clearOneof( nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.OneofDescriptor oneof) { return (Builder) super.clearOneof(oneof); } public Builder setRepeatedField( nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return (Builder) super.setRepeatedField(field, index, value); } public Builder addRepeatedField( nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(nl.topicus.jdbc.shaded.com.google.protobuf.Message other) { if (other instanceof nl.topicus.jdbc.shaded.com.google.api.ConfigChange) { return mergeFrom((nl.topicus.jdbc.shaded.com.google.api.ConfigChange)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(nl.topicus.jdbc.shaded.com.google.api.ConfigChange other) { if (other == nl.topicus.jdbc.shaded.com.google.api.ConfigChange.getDefaultInstance()) return this; if (!other.getElement().isEmpty()) { element_ = other.element_; onChanged(); } if (!other.getOldValue().isEmpty()) { oldValue_ = other.oldValue_; onChanged(); } if (!other.getNewValue().isEmpty()) { newValue_ = other.newValue_; onChanged(); } if (other.changeType_ != 0) { setChangeTypeValue(other.getChangeTypeValue()); } if (advicesBuilder_ == null) { if (!other.advices_.isEmpty()) { if (advices_.isEmpty()) { advices_ = other.advices_; bitField0_ = (bitField0_ & ~0x00000010); } else { ensureAdvicesIsMutable(); advices_.addAll(other.advices_); } onChanged(); } } else { if (!other.advices_.isEmpty()) { if (advicesBuilder_.isEmpty()) { advicesBuilder_.dispose(); advicesBuilder_ = null; advices_ = other.advices_; bitField0_ = (bitField0_ & ~0x00000010); advicesBuilder_ = nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getAdvicesFieldBuilder() : null; } else { advicesBuilder_.addAllMessages(other.advices_); } } } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } public final boolean isInitialized() { return true; } public Builder mergeFrom( nl.topicus.jdbc.shaded.com.google.protobuf.CodedInputStream input, nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { nl.topicus.jdbc.shaded.com.google.api.ConfigChange parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (nl.topicus.jdbc.shaded.com.google.api.ConfigChange) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.lang.Object element_ = ""; /** *
     * Object hierarchy path to the change, with levels separated by a '.'
     * character. For repeated fields, an applicable unique identifier field is
     * used for the index (usually selector, name, or id). For maps, the term
     * 'key' is used. If the field has no unique identifier, the numeric index
     * is used.
     * Examples:
     * - visibility.rules[selector=="google.LibraryService.CreateBook"].restriction
     * - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
     * - logging.producer_destinations[0]
     * 
* * string element = 1; */ public java.lang.String getElement() { java.lang.Object ref = element_; if (!(ref instanceof java.lang.String)) { nl.topicus.jdbc.shaded.com.google.protobuf.ByteString bs = (nl.topicus.jdbc.shaded.com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); element_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * Object hierarchy path to the change, with levels separated by a '.'
     * character. For repeated fields, an applicable unique identifier field is
     * used for the index (usually selector, name, or id). For maps, the term
     * 'key' is used. If the field has no unique identifier, the numeric index
     * is used.
     * Examples:
     * - visibility.rules[selector=="google.LibraryService.CreateBook"].restriction
     * - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
     * - logging.producer_destinations[0]
     * 
* * string element = 1; */ public nl.topicus.jdbc.shaded.com.google.protobuf.ByteString getElementBytes() { java.lang.Object ref = element_; if (ref instanceof String) { nl.topicus.jdbc.shaded.com.google.protobuf.ByteString b = nl.topicus.jdbc.shaded.com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); element_ = b; return b; } else { return (nl.topicus.jdbc.shaded.com.google.protobuf.ByteString) ref; } } /** *
     * Object hierarchy path to the change, with levels separated by a '.'
     * character. For repeated fields, an applicable unique identifier field is
     * used for the index (usually selector, name, or id). For maps, the term
     * 'key' is used. If the field has no unique identifier, the numeric index
     * is used.
     * Examples:
     * - visibility.rules[selector=="google.LibraryService.CreateBook"].restriction
     * - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
     * - logging.producer_destinations[0]
     * 
* * string element = 1; */ public Builder setElement( java.lang.String value) { if (value == null) { throw new NullPointerException(); } element_ = value; onChanged(); return this; } /** *
     * Object hierarchy path to the change, with levels separated by a '.'
     * character. For repeated fields, an applicable unique identifier field is
     * used for the index (usually selector, name, or id). For maps, the term
     * 'key' is used. If the field has no unique identifier, the numeric index
     * is used.
     * Examples:
     * - visibility.rules[selector=="google.LibraryService.CreateBook"].restriction
     * - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
     * - logging.producer_destinations[0]
     * 
* * string element = 1; */ public Builder clearElement() { element_ = getDefaultInstance().getElement(); onChanged(); return this; } /** *
     * Object hierarchy path to the change, with levels separated by a '.'
     * character. For repeated fields, an applicable unique identifier field is
     * used for the index (usually selector, name, or id). For maps, the term
     * 'key' is used. If the field has no unique identifier, the numeric index
     * is used.
     * Examples:
     * - visibility.rules[selector=="google.LibraryService.CreateBook"].restriction
     * - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
     * - logging.producer_destinations[0]
     * 
* * string element = 1; */ public Builder setElementBytes( nl.topicus.jdbc.shaded.com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); element_ = value; onChanged(); return this; } private java.lang.Object oldValue_ = ""; /** *
     * Value of the changed object in the old Service configuration,
     * in JSON format. This field will not be populated if ChangeType == ADDED.
     * 
* * string old_value = 2; */ public java.lang.String getOldValue() { java.lang.Object ref = oldValue_; if (!(ref instanceof java.lang.String)) { nl.topicus.jdbc.shaded.com.google.protobuf.ByteString bs = (nl.topicus.jdbc.shaded.com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); oldValue_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * Value of the changed object in the old Service configuration,
     * in JSON format. This field will not be populated if ChangeType == ADDED.
     * 
* * string old_value = 2; */ public nl.topicus.jdbc.shaded.com.google.protobuf.ByteString getOldValueBytes() { java.lang.Object ref = oldValue_; if (ref instanceof String) { nl.topicus.jdbc.shaded.com.google.protobuf.ByteString b = nl.topicus.jdbc.shaded.com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); oldValue_ = b; return b; } else { return (nl.topicus.jdbc.shaded.com.google.protobuf.ByteString) ref; } } /** *
     * Value of the changed object in the old Service configuration,
     * in JSON format. This field will not be populated if ChangeType == ADDED.
     * 
* * string old_value = 2; */ public Builder setOldValue( java.lang.String value) { if (value == null) { throw new NullPointerException(); } oldValue_ = value; onChanged(); return this; } /** *
     * Value of the changed object in the old Service configuration,
     * in JSON format. This field will not be populated if ChangeType == ADDED.
     * 
* * string old_value = 2; */ public Builder clearOldValue() { oldValue_ = getDefaultInstance().getOldValue(); onChanged(); return this; } /** *
     * Value of the changed object in the old Service configuration,
     * in JSON format. This field will not be populated if ChangeType == ADDED.
     * 
* * string old_value = 2; */ public Builder setOldValueBytes( nl.topicus.jdbc.shaded.com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); oldValue_ = value; onChanged(); return this; } private java.lang.Object newValue_ = ""; /** *
     * Value of the changed object in the new Service configuration,
     * in JSON format. This field will not be populated if ChangeType == REMOVED.
     * 
* * string new_value = 3; */ public java.lang.String getNewValue() { java.lang.Object ref = newValue_; if (!(ref instanceof java.lang.String)) { nl.topicus.jdbc.shaded.com.google.protobuf.ByteString bs = (nl.topicus.jdbc.shaded.com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); newValue_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * Value of the changed object in the new Service configuration,
     * in JSON format. This field will not be populated if ChangeType == REMOVED.
     * 
* * string new_value = 3; */ public nl.topicus.jdbc.shaded.com.google.protobuf.ByteString getNewValueBytes() { java.lang.Object ref = newValue_; if (ref instanceof String) { nl.topicus.jdbc.shaded.com.google.protobuf.ByteString b = nl.topicus.jdbc.shaded.com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); newValue_ = b; return b; } else { return (nl.topicus.jdbc.shaded.com.google.protobuf.ByteString) ref; } } /** *
     * Value of the changed object in the new Service configuration,
     * in JSON format. This field will not be populated if ChangeType == REMOVED.
     * 
* * string new_value = 3; */ public Builder setNewValue( java.lang.String value) { if (value == null) { throw new NullPointerException(); } newValue_ = value; onChanged(); return this; } /** *
     * Value of the changed object in the new Service configuration,
     * in JSON format. This field will not be populated if ChangeType == REMOVED.
     * 
* * string new_value = 3; */ public Builder clearNewValue() { newValue_ = getDefaultInstance().getNewValue(); onChanged(); return this; } /** *
     * Value of the changed object in the new Service configuration,
     * in JSON format. This field will not be populated if ChangeType == REMOVED.
     * 
* * string new_value = 3; */ public Builder setNewValueBytes( nl.topicus.jdbc.shaded.com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); newValue_ = value; onChanged(); return this; } private int changeType_ = 0; /** *
     * The type for this change, either ADDED, REMOVED, or MODIFIED.
     * 
* * .google.api.ChangeType change_type = 4; */ public int getChangeTypeValue() { return changeType_; } /** *
     * The type for this change, either ADDED, REMOVED, or MODIFIED.
     * 
* * .google.api.ChangeType change_type = 4; */ public Builder setChangeTypeValue(int value) { changeType_ = value; onChanged(); return this; } /** *
     * The type for this change, either ADDED, REMOVED, or MODIFIED.
     * 
* * .google.api.ChangeType change_type = 4; */ public nl.topicus.jdbc.shaded.com.google.api.ChangeType getChangeType() { nl.topicus.jdbc.shaded.com.google.api.ChangeType result = nl.topicus.jdbc.shaded.com.google.api.ChangeType.valueOf(changeType_); return result == null ? nl.topicus.jdbc.shaded.com.google.api.ChangeType.UNRECOGNIZED : result; } /** *
     * The type for this change, either ADDED, REMOVED, or MODIFIED.
     * 
* * .google.api.ChangeType change_type = 4; */ public Builder setChangeType(nl.topicus.jdbc.shaded.com.google.api.ChangeType value) { if (value == null) { throw new NullPointerException(); } changeType_ = value.getNumber(); onChanged(); return this; } /** *
     * The type for this change, either ADDED, REMOVED, or MODIFIED.
     * 
* * .google.api.ChangeType change_type = 4; */ public Builder clearChangeType() { changeType_ = 0; onChanged(); return this; } private java.util.List advices_ = java.util.Collections.emptyList(); private void ensureAdvicesIsMutable() { if (!((bitField0_ & 0x00000010) == 0x00000010)) { advices_ = new java.util.ArrayList(advices_); bitField0_ |= 0x00000010; } } private nl.topicus.jdbc.shaded.com.google.protobuf.RepeatedFieldBuilderV3< nl.topicus.jdbc.shaded.com.google.api.Advice, nl.topicus.jdbc.shaded.com.google.api.Advice.Builder, nl.topicus.jdbc.shaded.com.google.api.AdviceOrBuilder> advicesBuilder_; /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public java.util.List getAdvicesList() { if (advicesBuilder_ == null) { return java.util.Collections.unmodifiableList(advices_); } else { return advicesBuilder_.getMessageList(); } } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public int getAdvicesCount() { if (advicesBuilder_ == null) { return advices_.size(); } else { return advicesBuilder_.getCount(); } } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public nl.topicus.jdbc.shaded.com.google.api.Advice getAdvices(int index) { if (advicesBuilder_ == null) { return advices_.get(index); } else { return advicesBuilder_.getMessage(index); } } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public Builder setAdvices( int index, nl.topicus.jdbc.shaded.com.google.api.Advice value) { if (advicesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureAdvicesIsMutable(); advices_.set(index, value); onChanged(); } else { advicesBuilder_.setMessage(index, value); } return this; } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public Builder setAdvices( int index, nl.topicus.jdbc.shaded.com.google.api.Advice.Builder builderForValue) { if (advicesBuilder_ == null) { ensureAdvicesIsMutable(); advices_.set(index, builderForValue.build()); onChanged(); } else { advicesBuilder_.setMessage(index, builderForValue.build()); } return this; } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public Builder addAdvices(nl.topicus.jdbc.shaded.com.google.api.Advice value) { if (advicesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureAdvicesIsMutable(); advices_.add(value); onChanged(); } else { advicesBuilder_.addMessage(value); } return this; } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public Builder addAdvices( int index, nl.topicus.jdbc.shaded.com.google.api.Advice value) { if (advicesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureAdvicesIsMutable(); advices_.add(index, value); onChanged(); } else { advicesBuilder_.addMessage(index, value); } return this; } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public Builder addAdvices( nl.topicus.jdbc.shaded.com.google.api.Advice.Builder builderForValue) { if (advicesBuilder_ == null) { ensureAdvicesIsMutable(); advices_.add(builderForValue.build()); onChanged(); } else { advicesBuilder_.addMessage(builderForValue.build()); } return this; } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public Builder addAdvices( int index, nl.topicus.jdbc.shaded.com.google.api.Advice.Builder builderForValue) { if (advicesBuilder_ == null) { ensureAdvicesIsMutable(); advices_.add(index, builderForValue.build()); onChanged(); } else { advicesBuilder_.addMessage(index, builderForValue.build()); } return this; } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public Builder addAllAdvices( java.lang.Iterable values) { if (advicesBuilder_ == null) { ensureAdvicesIsMutable(); nl.topicus.jdbc.shaded.com.google.protobuf.AbstractMessageLite.Builder.addAll( values, advices_); onChanged(); } else { advicesBuilder_.addAllMessages(values); } return this; } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public Builder clearAdvices() { if (advicesBuilder_ == null) { advices_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000010); onChanged(); } else { advicesBuilder_.clear(); } return this; } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public Builder removeAdvices(int index) { if (advicesBuilder_ == null) { ensureAdvicesIsMutable(); advices_.remove(index); onChanged(); } else { advicesBuilder_.remove(index); } return this; } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public nl.topicus.jdbc.shaded.com.google.api.Advice.Builder getAdvicesBuilder( int index) { return getAdvicesFieldBuilder().getBuilder(index); } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public nl.topicus.jdbc.shaded.com.google.api.AdviceOrBuilder getAdvicesOrBuilder( int index) { if (advicesBuilder_ == null) { return advices_.get(index); } else { return advicesBuilder_.getMessageOrBuilder(index); } } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public java.util.List getAdvicesOrBuilderList() { if (advicesBuilder_ != null) { return advicesBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(advices_); } } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public nl.topicus.jdbc.shaded.com.google.api.Advice.Builder addAdvicesBuilder() { return getAdvicesFieldBuilder().addBuilder( nl.topicus.jdbc.shaded.com.google.api.Advice.getDefaultInstance()); } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public nl.topicus.jdbc.shaded.com.google.api.Advice.Builder addAdvicesBuilder( int index) { return getAdvicesFieldBuilder().addBuilder( index, nl.topicus.jdbc.shaded.com.google.api.Advice.getDefaultInstance()); } /** *
     * Collection of advice provided for this change, useful for determining the
     * possible impact of this change.
     * 
* * repeated .google.api.Advice advices = 5; */ public java.util.List getAdvicesBuilderList() { return getAdvicesFieldBuilder().getBuilderList(); } private nl.topicus.jdbc.shaded.com.google.protobuf.RepeatedFieldBuilderV3< nl.topicus.jdbc.shaded.com.google.api.Advice, nl.topicus.jdbc.shaded.com.google.api.Advice.Builder, nl.topicus.jdbc.shaded.com.google.api.AdviceOrBuilder> getAdvicesFieldBuilder() { if (advicesBuilder_ == null) { advicesBuilder_ = new nl.topicus.jdbc.shaded.com.google.protobuf.RepeatedFieldBuilderV3< nl.topicus.jdbc.shaded.com.google.api.Advice, nl.topicus.jdbc.shaded.com.google.api.Advice.Builder, nl.topicus.jdbc.shaded.com.google.api.AdviceOrBuilder>( advices_, ((bitField0_ & 0x00000010) == 0x00000010), getParentForChildren(), isClean()); advices_ = null; } return advicesBuilder_; } public final Builder setUnknownFields( final nl.topicus.jdbc.shaded.com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFieldsProto3(unknownFields); } public final Builder mergeUnknownFields( final nl.topicus.jdbc.shaded.com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.api.ConfigChange) } // @@protoc_insertion_point(class_scope:google.api.ConfigChange) private static final nl.topicus.jdbc.shaded.com.google.api.ConfigChange DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new nl.topicus.jdbc.shaded.com.google.api.ConfigChange(); } public static nl.topicus.jdbc.shaded.com.google.api.ConfigChange getDefaultInstance() { return DEFAULT_INSTANCE; } private static final nl.topicus.jdbc.shaded.com.google.protobuf.Parser PARSER = new nl.topicus.jdbc.shaded.com.google.protobuf.AbstractParser() { public ConfigChange parsePartialFrom( nl.topicus.jdbc.shaded.com.google.protobuf.CodedInputStream input, nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException { return new ConfigChange(input, extensionRegistry); } }; public static nl.topicus.jdbc.shaded.com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public nl.topicus.jdbc.shaded.com.google.protobuf.Parser getParserForType() { return PARSER; } public nl.topicus.jdbc.shaded.com.google.api.ConfigChange getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy