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

grpc.cache_client._DictionarySetRequest Maven / Gradle / Ivy

There is a newer version: 0.117.0
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: cacheclient.proto

package grpc.cache_client;

/**
 * Protobuf type {@code cache_client._DictionarySetRequest}
 */
public final class _DictionarySetRequest extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:cache_client._DictionarySetRequest)
    _DictionarySetRequestOrBuilder {
private static final long serialVersionUID = 0L;
  // Use _DictionarySetRequest.newBuilder() to construct.
  private _DictionarySetRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private _DictionarySetRequest() {
    dictionaryName_ = com.google.protobuf.ByteString.EMPTY;
    items_ = java.util.Collections.emptyList();
  }

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(
      UnusedPrivateParameter unused) {
    return new _DictionarySetRequest();
  }

  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return grpc.cache_client.Cacheclient.internal_static_cache_client__DictionarySetRequest_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return grpc.cache_client.Cacheclient.internal_static_cache_client__DictionarySetRequest_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            grpc.cache_client._DictionarySetRequest.class, grpc.cache_client._DictionarySetRequest.Builder.class);
  }

  public static final int DICTIONARY_NAME_FIELD_NUMBER = 1;
  private com.google.protobuf.ByteString dictionaryName_ = com.google.protobuf.ByteString.EMPTY;
  /**
   * bytes dictionary_name = 1;
   * @return The dictionaryName.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString getDictionaryName() {
    return dictionaryName_;
  }

  public static final int ITEMS_FIELD_NUMBER = 2;
  @SuppressWarnings("serial")
  private java.util.List items_;
  /**
   * repeated .cache_client._DictionaryFieldValuePair items = 2;
   */
  @java.lang.Override
  public java.util.List getItemsList() {
    return items_;
  }
  /**
   * repeated .cache_client._DictionaryFieldValuePair items = 2;
   */
  @java.lang.Override
  public java.util.List 
      getItemsOrBuilderList() {
    return items_;
  }
  /**
   * repeated .cache_client._DictionaryFieldValuePair items = 2;
   */
  @java.lang.Override
  public int getItemsCount() {
    return items_.size();
  }
  /**
   * repeated .cache_client._DictionaryFieldValuePair items = 2;
   */
  @java.lang.Override
  public grpc.cache_client._DictionaryFieldValuePair getItems(int index) {
    return items_.get(index);
  }
  /**
   * repeated .cache_client._DictionaryFieldValuePair items = 2;
   */
  @java.lang.Override
  public grpc.cache_client._DictionaryFieldValuePairOrBuilder getItemsOrBuilder(
      int index) {
    return items_.get(index);
  }

  public static final int TTL_MILLISECONDS_FIELD_NUMBER = 3;
  private long ttlMilliseconds_ = 0L;
  /**
   * uint64 ttl_milliseconds = 3;
   * @return The ttlMilliseconds.
   */
  @java.lang.Override
  public long getTtlMilliseconds() {
    return ttlMilliseconds_;
  }

  public static final int REFRESH_TTL_FIELD_NUMBER = 4;
  private boolean refreshTtl_ = false;
  /**
   * bool refresh_ttl = 4;
   * @return The refreshTtl.
   */
  @java.lang.Override
  public boolean getRefreshTtl() {
    return refreshTtl_;
  }

  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 (!dictionaryName_.isEmpty()) {
      output.writeBytes(1, dictionaryName_);
    }
    for (int i = 0; i < items_.size(); i++) {
      output.writeMessage(2, items_.get(i));
    }
    if (ttlMilliseconds_ != 0L) {
      output.writeUInt64(3, ttlMilliseconds_);
    }
    if (refreshTtl_ != false) {
      output.writeBool(4, refreshTtl_);
    }
    getUnknownFields().writeTo(output);
  }

  @java.lang.Override
  public int getSerializedSize() {
    int size = memoizedSize;
    if (size != -1) return size;

    size = 0;
    if (!dictionaryName_.isEmpty()) {
      size += com.google.protobuf.CodedOutputStream
        .computeBytesSize(1, dictionaryName_);
    }
    for (int i = 0; i < items_.size(); i++) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(2, items_.get(i));
    }
    if (ttlMilliseconds_ != 0L) {
      size += com.google.protobuf.CodedOutputStream
        .computeUInt64Size(3, ttlMilliseconds_);
    }
    if (refreshTtl_ != false) {
      size += com.google.protobuf.CodedOutputStream
        .computeBoolSize(4, refreshTtl_);
    }
    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 grpc.cache_client._DictionarySetRequest)) {
      return super.equals(obj);
    }
    grpc.cache_client._DictionarySetRequest other = (grpc.cache_client._DictionarySetRequest) obj;

    if (!getDictionaryName()
        .equals(other.getDictionaryName())) return false;
    if (!getItemsList()
        .equals(other.getItemsList())) return false;
    if (getTtlMilliseconds()
        != other.getTtlMilliseconds()) return false;
    if (getRefreshTtl()
        != other.getRefreshTtl()) 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) + DICTIONARY_NAME_FIELD_NUMBER;
    hash = (53 * hash) + getDictionaryName().hashCode();
    if (getItemsCount() > 0) {
      hash = (37 * hash) + ITEMS_FIELD_NUMBER;
      hash = (53 * hash) + getItemsList().hashCode();
    }
    hash = (37 * hash) + TTL_MILLISECONDS_FIELD_NUMBER;
    hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
        getTtlMilliseconds());
    hash = (37 * hash) + REFRESH_TTL_FIELD_NUMBER;
    hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
        getRefreshTtl());
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static grpc.cache_client._DictionarySetRequest parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static grpc.cache_client._DictionarySetRequest parseFrom(
      java.nio.ByteBuffer data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static grpc.cache_client._DictionarySetRequest parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static grpc.cache_client._DictionarySetRequest parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static grpc.cache_client._DictionarySetRequest parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static grpc.cache_client._DictionarySetRequest parseFrom(
      byte[] data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static grpc.cache_client._DictionarySetRequest parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static grpc.cache_client._DictionarySetRequest 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 grpc.cache_client._DictionarySetRequest parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input);
  }

  public static grpc.cache_client._DictionarySetRequest 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 grpc.cache_client._DictionarySetRequest parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static grpc.cache_client._DictionarySetRequest 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(grpc.cache_client._DictionarySetRequest 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;
  }
  /**
   * Protobuf type {@code cache_client._DictionarySetRequest}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:cache_client._DictionarySetRequest)
      grpc.cache_client._DictionarySetRequestOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return grpc.cache_client.Cacheclient.internal_static_cache_client__DictionarySetRequest_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return grpc.cache_client.Cacheclient.internal_static_cache_client__DictionarySetRequest_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              grpc.cache_client._DictionarySetRequest.class, grpc.cache_client._DictionarySetRequest.Builder.class);
    }

    // Construct using grpc.cache_client._DictionarySetRequest.newBuilder()
    private Builder() {

    }

    private Builder(
        com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);

    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      dictionaryName_ = com.google.protobuf.ByteString.EMPTY;
      if (itemsBuilder_ == null) {
        items_ = java.util.Collections.emptyList();
      } else {
        items_ = null;
        itemsBuilder_.clear();
      }
      bitField0_ = (bitField0_ & ~0x00000002);
      ttlMilliseconds_ = 0L;
      refreshTtl_ = false;
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return grpc.cache_client.Cacheclient.internal_static_cache_client__DictionarySetRequest_descriptor;
    }

    @java.lang.Override
    public grpc.cache_client._DictionarySetRequest getDefaultInstanceForType() {
      return grpc.cache_client._DictionarySetRequest.getDefaultInstance();
    }

    @java.lang.Override
    public grpc.cache_client._DictionarySetRequest build() {
      grpc.cache_client._DictionarySetRequest result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public grpc.cache_client._DictionarySetRequest buildPartial() {
      grpc.cache_client._DictionarySetRequest result = new grpc.cache_client._DictionarySetRequest(this);
      buildPartialRepeatedFields(result);
      if (bitField0_ != 0) { buildPartial0(result); }
      onBuilt();
      return result;
    }

    private void buildPartialRepeatedFields(grpc.cache_client._DictionarySetRequest result) {
      if (itemsBuilder_ == null) {
        if (((bitField0_ & 0x00000002) != 0)) {
          items_ = java.util.Collections.unmodifiableList(items_);
          bitField0_ = (bitField0_ & ~0x00000002);
        }
        result.items_ = items_;
      } else {
        result.items_ = itemsBuilder_.build();
      }
    }

    private void buildPartial0(grpc.cache_client._DictionarySetRequest result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.dictionaryName_ = dictionaryName_;
      }
      if (((from_bitField0_ & 0x00000004) != 0)) {
        result.ttlMilliseconds_ = ttlMilliseconds_;
      }
      if (((from_bitField0_ & 0x00000008) != 0)) {
        result.refreshTtl_ = refreshTtl_;
      }
    }

    @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 grpc.cache_client._DictionarySetRequest) {
        return mergeFrom((grpc.cache_client._DictionarySetRequest)other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(grpc.cache_client._DictionarySetRequest other) {
      if (other == grpc.cache_client._DictionarySetRequest.getDefaultInstance()) return this;
      if (other.getDictionaryName() != com.google.protobuf.ByteString.EMPTY) {
        setDictionaryName(other.getDictionaryName());
      }
      if (itemsBuilder_ == null) {
        if (!other.items_.isEmpty()) {
          if (items_.isEmpty()) {
            items_ = other.items_;
            bitField0_ = (bitField0_ & ~0x00000002);
          } else {
            ensureItemsIsMutable();
            items_.addAll(other.items_);
          }
          onChanged();
        }
      } else {
        if (!other.items_.isEmpty()) {
          if (itemsBuilder_.isEmpty()) {
            itemsBuilder_.dispose();
            itemsBuilder_ = null;
            items_ = other.items_;
            bitField0_ = (bitField0_ & ~0x00000002);
            itemsBuilder_ = 
              com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
                 getItemsFieldBuilder() : null;
          } else {
            itemsBuilder_.addAllMessages(other.items_);
          }
        }
      }
      if (other.getTtlMilliseconds() != 0L) {
        setTtlMilliseconds(other.getTtlMilliseconds());
      }
      if (other.getRefreshTtl() != false) {
        setRefreshTtl(other.getRefreshTtl());
      }
      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: {
              dictionaryName_ = input.readBytes();
              bitField0_ |= 0x00000001;
              break;
            } // case 10
            case 18: {
              grpc.cache_client._DictionaryFieldValuePair m =
                  input.readMessage(
                      grpc.cache_client._DictionaryFieldValuePair.parser(),
                      extensionRegistry);
              if (itemsBuilder_ == null) {
                ensureItemsIsMutable();
                items_.add(m);
              } else {
                itemsBuilder_.addMessage(m);
              }
              break;
            } // case 18
            case 24: {
              ttlMilliseconds_ = input.readUInt64();
              bitField0_ |= 0x00000004;
              break;
            } // case 24
            case 32: {
              refreshTtl_ = input.readBool();
              bitField0_ |= 0x00000008;
              break;
            } // case 32
            default: {
              if (!super.parseUnknownField(input, extensionRegistry, tag)) {
                done = true; // was an endgroup tag
              }
              break;
            } // default:
          } // switch (tag)
        } // while (!done)
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.unwrapIOException();
      } finally {
        onChanged();
      } // finally
      return this;
    }
    private int bitField0_;

    private com.google.protobuf.ByteString dictionaryName_ = com.google.protobuf.ByteString.EMPTY;
    /**
     * bytes dictionary_name = 1;
     * @return The dictionaryName.
     */
    @java.lang.Override
    public com.google.protobuf.ByteString getDictionaryName() {
      return dictionaryName_;
    }
    /**
     * bytes dictionary_name = 1;
     * @param value The dictionaryName to set.
     * @return This builder for chaining.
     */
    public Builder setDictionaryName(com.google.protobuf.ByteString value) {
      if (value == null) { throw new NullPointerException(); }
      dictionaryName_ = value;
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * bytes dictionary_name = 1;
     * @return This builder for chaining.
     */
    public Builder clearDictionaryName() {
      bitField0_ = (bitField0_ & ~0x00000001);
      dictionaryName_ = getDefaultInstance().getDictionaryName();
      onChanged();
      return this;
    }

    private java.util.List items_ =
      java.util.Collections.emptyList();
    private void ensureItemsIsMutable() {
      if (!((bitField0_ & 0x00000002) != 0)) {
        items_ = new java.util.ArrayList(items_);
        bitField0_ |= 0x00000002;
       }
    }

    private com.google.protobuf.RepeatedFieldBuilderV3<
        grpc.cache_client._DictionaryFieldValuePair, grpc.cache_client._DictionaryFieldValuePair.Builder, grpc.cache_client._DictionaryFieldValuePairOrBuilder> itemsBuilder_;

    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public java.util.List getItemsList() {
      if (itemsBuilder_ == null) {
        return java.util.Collections.unmodifiableList(items_);
      } else {
        return itemsBuilder_.getMessageList();
      }
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public int getItemsCount() {
      if (itemsBuilder_ == null) {
        return items_.size();
      } else {
        return itemsBuilder_.getCount();
      }
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public grpc.cache_client._DictionaryFieldValuePair getItems(int index) {
      if (itemsBuilder_ == null) {
        return items_.get(index);
      } else {
        return itemsBuilder_.getMessage(index);
      }
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public Builder setItems(
        int index, grpc.cache_client._DictionaryFieldValuePair value) {
      if (itemsBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureItemsIsMutable();
        items_.set(index, value);
        onChanged();
      } else {
        itemsBuilder_.setMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public Builder setItems(
        int index, grpc.cache_client._DictionaryFieldValuePair.Builder builderForValue) {
      if (itemsBuilder_ == null) {
        ensureItemsIsMutable();
        items_.set(index, builderForValue.build());
        onChanged();
      } else {
        itemsBuilder_.setMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public Builder addItems(grpc.cache_client._DictionaryFieldValuePair value) {
      if (itemsBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureItemsIsMutable();
        items_.add(value);
        onChanged();
      } else {
        itemsBuilder_.addMessage(value);
      }
      return this;
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public Builder addItems(
        int index, grpc.cache_client._DictionaryFieldValuePair value) {
      if (itemsBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureItemsIsMutable();
        items_.add(index, value);
        onChanged();
      } else {
        itemsBuilder_.addMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public Builder addItems(
        grpc.cache_client._DictionaryFieldValuePair.Builder builderForValue) {
      if (itemsBuilder_ == null) {
        ensureItemsIsMutable();
        items_.add(builderForValue.build());
        onChanged();
      } else {
        itemsBuilder_.addMessage(builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public Builder addItems(
        int index, grpc.cache_client._DictionaryFieldValuePair.Builder builderForValue) {
      if (itemsBuilder_ == null) {
        ensureItemsIsMutable();
        items_.add(index, builderForValue.build());
        onChanged();
      } else {
        itemsBuilder_.addMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public Builder addAllItems(
        java.lang.Iterable values) {
      if (itemsBuilder_ == null) {
        ensureItemsIsMutable();
        com.google.protobuf.AbstractMessageLite.Builder.addAll(
            values, items_);
        onChanged();
      } else {
        itemsBuilder_.addAllMessages(values);
      }
      return this;
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public Builder clearItems() {
      if (itemsBuilder_ == null) {
        items_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000002);
        onChanged();
      } else {
        itemsBuilder_.clear();
      }
      return this;
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public Builder removeItems(int index) {
      if (itemsBuilder_ == null) {
        ensureItemsIsMutable();
        items_.remove(index);
        onChanged();
      } else {
        itemsBuilder_.remove(index);
      }
      return this;
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public grpc.cache_client._DictionaryFieldValuePair.Builder getItemsBuilder(
        int index) {
      return getItemsFieldBuilder().getBuilder(index);
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public grpc.cache_client._DictionaryFieldValuePairOrBuilder getItemsOrBuilder(
        int index) {
      if (itemsBuilder_ == null) {
        return items_.get(index);  } else {
        return itemsBuilder_.getMessageOrBuilder(index);
      }
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public java.util.List 
         getItemsOrBuilderList() {
      if (itemsBuilder_ != null) {
        return itemsBuilder_.getMessageOrBuilderList();
      } else {
        return java.util.Collections.unmodifiableList(items_);
      }
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public grpc.cache_client._DictionaryFieldValuePair.Builder addItemsBuilder() {
      return getItemsFieldBuilder().addBuilder(
          grpc.cache_client._DictionaryFieldValuePair.getDefaultInstance());
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public grpc.cache_client._DictionaryFieldValuePair.Builder addItemsBuilder(
        int index) {
      return getItemsFieldBuilder().addBuilder(
          index, grpc.cache_client._DictionaryFieldValuePair.getDefaultInstance());
    }
    /**
     * repeated .cache_client._DictionaryFieldValuePair items = 2;
     */
    public java.util.List 
         getItemsBuilderList() {
      return getItemsFieldBuilder().getBuilderList();
    }
    private com.google.protobuf.RepeatedFieldBuilderV3<
        grpc.cache_client._DictionaryFieldValuePair, grpc.cache_client._DictionaryFieldValuePair.Builder, grpc.cache_client._DictionaryFieldValuePairOrBuilder> 
        getItemsFieldBuilder() {
      if (itemsBuilder_ == null) {
        itemsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
            grpc.cache_client._DictionaryFieldValuePair, grpc.cache_client._DictionaryFieldValuePair.Builder, grpc.cache_client._DictionaryFieldValuePairOrBuilder>(
                items_,
                ((bitField0_ & 0x00000002) != 0),
                getParentForChildren(),
                isClean());
        items_ = null;
      }
      return itemsBuilder_;
    }

    private long ttlMilliseconds_ ;
    /**
     * uint64 ttl_milliseconds = 3;
     * @return The ttlMilliseconds.
     */
    @java.lang.Override
    public long getTtlMilliseconds() {
      return ttlMilliseconds_;
    }
    /**
     * uint64 ttl_milliseconds = 3;
     * @param value The ttlMilliseconds to set.
     * @return This builder for chaining.
     */
    public Builder setTtlMilliseconds(long value) {

      ttlMilliseconds_ = value;
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     * uint64 ttl_milliseconds = 3;
     * @return This builder for chaining.
     */
    public Builder clearTtlMilliseconds() {
      bitField0_ = (bitField0_ & ~0x00000004);
      ttlMilliseconds_ = 0L;
      onChanged();
      return this;
    }

    private boolean refreshTtl_ ;
    /**
     * bool refresh_ttl = 4;
     * @return The refreshTtl.
     */
    @java.lang.Override
    public boolean getRefreshTtl() {
      return refreshTtl_;
    }
    /**
     * bool refresh_ttl = 4;
     * @param value The refreshTtl to set.
     * @return This builder for chaining.
     */
    public Builder setRefreshTtl(boolean value) {

      refreshTtl_ = value;
      bitField0_ |= 0x00000008;
      onChanged();
      return this;
    }
    /**
     * bool refresh_ttl = 4;
     * @return This builder for chaining.
     */
    public Builder clearRefreshTtl() {
      bitField0_ = (bitField0_ & ~0x00000008);
      refreshTtl_ = false;
      onChanged();
      return this;
    }
    @java.lang.Override
    public final Builder setUnknownFields(
        final com.google.protobuf.UnknownFieldSet unknownFields) {
      return super.setUnknownFields(unknownFields);
    }

    @java.lang.Override
    public final Builder mergeUnknownFields(
        final com.google.protobuf.UnknownFieldSet unknownFields) {
      return super.mergeUnknownFields(unknownFields);
    }


    // @@protoc_insertion_point(builder_scope:cache_client._DictionarySetRequest)
  }

  // @@protoc_insertion_point(class_scope:cache_client._DictionarySetRequest)
  private static final grpc.cache_client._DictionarySetRequest DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new grpc.cache_client._DictionarySetRequest();
  }

  public static grpc.cache_client._DictionarySetRequest getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser<_DictionarySetRequest>
      PARSER = new com.google.protobuf.AbstractParser<_DictionarySetRequest>() {
    @java.lang.Override
    public _DictionarySetRequest 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<_DictionarySetRequest> parser() {
    return PARSER;
  }

  @java.lang.Override
  public com.google.protobuf.Parser<_DictionarySetRequest> getParserForType() {
    return PARSER;
  }

  @java.lang.Override
  public grpc.cache_client._DictionarySetRequest getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy