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

grpc.cache_client._KeysExistResponse Maven / Gradle / Ivy

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

package grpc.cache_client;

/**
 * Protobuf type {@code cache_client._KeysExistResponse}
 */
public final class _KeysExistResponse extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:cache_client._KeysExistResponse)
    _KeysExistResponseOrBuilder {
private static final long serialVersionUID = 0L;
  // Use _KeysExistResponse.newBuilder() to construct.
  private _KeysExistResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private _KeysExistResponse() {
    exists_ = emptyBooleanList();
  }

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

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

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

  public static final int EXISTS_FIELD_NUMBER = 1;
  @SuppressWarnings("serial")
  private com.google.protobuf.Internal.BooleanList exists_ =
      emptyBooleanList();
  /**
   * repeated bool exists = 1;
   * @return A list containing the exists.
   */
  @java.lang.Override
  public java.util.List
      getExistsList() {
    return exists_;
  }
  /**
   * repeated bool exists = 1;
   * @return The count of exists.
   */
  public int getExistsCount() {
    return exists_.size();
  }
  /**
   * repeated bool exists = 1;
   * @param index The index of the element to return.
   * @return The exists at the given index.
   */
  public boolean getExists(int index) {
    return exists_.getBoolean(index);
  }
  private int existsMemoizedSerializedSize = -1;

  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 (getExistsList().size() > 0) {
      output.writeUInt32NoTag(10);
      output.writeUInt32NoTag(existsMemoizedSerializedSize);
    }
    for (int i = 0; i < exists_.size(); i++) {
      output.writeBoolNoTag(exists_.getBoolean(i));
    }
    getUnknownFields().writeTo(output);
  }

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

    size = 0;
    {
      int dataSize = 0;
      dataSize = 1 * getExistsList().size();
      size += dataSize;
      if (!getExistsList().isEmpty()) {
        size += 1;
        size += com.google.protobuf.CodedOutputStream
            .computeInt32SizeNoTag(dataSize);
      }
      existsMemoizedSerializedSize = dataSize;
    }
    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._KeysExistResponse)) {
      return super.equals(obj);
    }
    grpc.cache_client._KeysExistResponse other = (grpc.cache_client._KeysExistResponse) obj;

    if (!getExistsList()
        .equals(other.getExistsList())) return false;
    if (!getUnknownFields().equals(other.getUnknownFields())) return false;
    return true;
  }

  @java.lang.Override
  public int hashCode() {
    if (memoizedHashCode != 0) {
      return memoizedHashCode;
    }
    int hash = 41;
    hash = (19 * hash) + getDescriptor().hashCode();
    if (getExistsCount() > 0) {
      hash = (37 * hash) + EXISTS_FIELD_NUMBER;
      hash = (53 * hash) + getExistsList().hashCode();
    }
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

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

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

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

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

    }

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

    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      exists_ = emptyBooleanList();
      return this;
    }

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

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

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

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

    private void buildPartial0(grpc.cache_client._KeysExistResponse result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        exists_.makeImmutable();
        result.exists_ = exists_;
      }
    }

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

    public Builder mergeFrom(grpc.cache_client._KeysExistResponse other) {
      if (other == grpc.cache_client._KeysExistResponse.getDefaultInstance()) return this;
      if (!other.exists_.isEmpty()) {
        if (exists_.isEmpty()) {
          exists_ = other.exists_;
          exists_.makeImmutable();
          bitField0_ |= 0x00000001;
        } else {
          ensureExistsIsMutable();
          exists_.addAll(other.exists_);
        }
        onChanged();
      }
      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: {
              boolean v = input.readBool();
              ensureExistsIsMutable();
              exists_.addBoolean(v);
              break;
            } // case 8
            case 10: {
              int length = input.readRawVarint32();
              int limit = input.pushLimit(length);
              int alloc = length > 4096 ? 4096 : length;
              ensureExistsIsMutable(alloc / 1);
              while (input.getBytesUntilLimit() > 0) {
                exists_.addBoolean(input.readBool());
              }
              input.popLimit(limit);
              break;
            } // case 10
            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.Internal.BooleanList exists_ = emptyBooleanList();
    private void ensureExistsIsMutable() {
      if (!exists_.isModifiable()) {
        exists_ = makeMutableCopy(exists_);
      }
      bitField0_ |= 0x00000001;
    }
    private void ensureExistsIsMutable(int capacity) {
      if (!exists_.isModifiable()) {
        exists_ = makeMutableCopy(exists_, capacity);
      }
      bitField0_ |= 0x00000001;
    }
    /**
     * repeated bool exists = 1;
     * @return A list containing the exists.
     */
    public java.util.List
        getExistsList() {
      exists_.makeImmutable();
      return exists_;
    }
    /**
     * repeated bool exists = 1;
     * @return The count of exists.
     */
    public int getExistsCount() {
      return exists_.size();
    }
    /**
     * repeated bool exists = 1;
     * @param index The index of the element to return.
     * @return The exists at the given index.
     */
    public boolean getExists(int index) {
      return exists_.getBoolean(index);
    }
    /**
     * repeated bool exists = 1;
     * @param index The index to set the value at.
     * @param value The exists to set.
     * @return This builder for chaining.
     */
    public Builder setExists(
        int index, boolean value) {

      ensureExistsIsMutable();
      exists_.setBoolean(index, value);
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * repeated bool exists = 1;
     * @param value The exists to add.
     * @return This builder for chaining.
     */
    public Builder addExists(boolean value) {

      ensureExistsIsMutable();
      exists_.addBoolean(value);
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * repeated bool exists = 1;
     * @param values The exists to add.
     * @return This builder for chaining.
     */
    public Builder addAllExists(
        java.lang.Iterable values) {
      ensureExistsIsMutable();
      com.google.protobuf.AbstractMessageLite.Builder.addAll(
          values, exists_);
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * repeated bool exists = 1;
     * @return This builder for chaining.
     */
    public Builder clearExists() {
      exists_ = emptyBooleanList();
      bitField0_ = (bitField0_ & ~0x00000001);
      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._KeysExistResponse)
  }

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

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

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

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

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

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy