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

io.milvus.grpc.DeleteRequest Maven / Gradle / Ivy

Go to download

Java SDK for Milvus, a distributed high-performance vector search engine. update grpc to 1.42.1 update protobuf to 3.19.1

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

package io.milvus.grpc;

/**
 * Protobuf type {@code milvus.proto.milvus.DeleteRequest}
 */
public final class DeleteRequest extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:milvus.proto.milvus.DeleteRequest)
    DeleteRequestOrBuilder {
private static final long serialVersionUID = 0L;
  // Use DeleteRequest.newBuilder() to construct.
  private DeleteRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private DeleteRequest() {
    dbName_ = "";
    collectionName_ = "";
    partitionName_ = "";
    expr_ = "";
    hashKeys_ = emptyIntList();
  }

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

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private DeleteRequest(
      com.google.protobuf.CodedInputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    this();
    if (extensionRegistry == null) {
      throw new java.lang.NullPointerException();
    }
    int mutable_bitField0_ = 0;
    com.google.protobuf.UnknownFieldSet.Builder unknownFields =
        com.google.protobuf.UnknownFieldSet.newBuilder();
    try {
      boolean done = false;
      while (!done) {
        int tag = input.readTag();
        switch (tag) {
          case 0:
            done = true;
            break;
          case 10: {
            io.milvus.grpc.MsgBase.Builder subBuilder = null;
            if (base_ != null) {
              subBuilder = base_.toBuilder();
            }
            base_ = input.readMessage(io.milvus.grpc.MsgBase.parser(), extensionRegistry);
            if (subBuilder != null) {
              subBuilder.mergeFrom(base_);
              base_ = subBuilder.buildPartial();
            }

            break;
          }
          case 18: {
            java.lang.String s = input.readStringRequireUtf8();

            dbName_ = s;
            break;
          }
          case 26: {
            java.lang.String s = input.readStringRequireUtf8();

            collectionName_ = s;
            break;
          }
          case 34: {
            java.lang.String s = input.readStringRequireUtf8();

            partitionName_ = s;
            break;
          }
          case 42: {
            java.lang.String s = input.readStringRequireUtf8();

            expr_ = s;
            break;
          }
          case 48: {
            if (!((mutable_bitField0_ & 0x00000001) != 0)) {
              hashKeys_ = newIntList();
              mutable_bitField0_ |= 0x00000001;
            }
            hashKeys_.addInt(input.readUInt32());
            break;
          }
          case 50: {
            int length = input.readRawVarint32();
            int limit = input.pushLimit(length);
            if (!((mutable_bitField0_ & 0x00000001) != 0) && input.getBytesUntilLimit() > 0) {
              hashKeys_ = newIntList();
              mutable_bitField0_ |= 0x00000001;
            }
            while (input.getBytesUntilLimit() > 0) {
              hashKeys_.addInt(input.readUInt32());
            }
            input.popLimit(limit);
            break;
          }
          default: {
            if (!parseUnknownField(
                input, unknownFields, extensionRegistry, tag)) {
              done = true;
            }
            break;
          }
        }
      }
    } catch (com.google.protobuf.InvalidProtocolBufferException e) {
      throw e.setUnfinishedMessage(this);
    } catch (java.io.IOException e) {
      throw new com.google.protobuf.InvalidProtocolBufferException(
          e).setUnfinishedMessage(this);
    } finally {
      if (((mutable_bitField0_ & 0x00000001) != 0)) {
        hashKeys_.makeImmutable(); // C
      }
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_DeleteRequest_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_DeleteRequest_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            io.milvus.grpc.DeleteRequest.class, io.milvus.grpc.DeleteRequest.Builder.class);
  }

  public static final int BASE_FIELD_NUMBER = 1;
  private io.milvus.grpc.MsgBase base_;
  /**
   * .milvus.proto.common.MsgBase base = 1;
   * @return Whether the base field is set.
   */
  @java.lang.Override
  public boolean hasBase() {
    return base_ != null;
  }
  /**
   * .milvus.proto.common.MsgBase base = 1;
   * @return The base.
   */
  @java.lang.Override
  public io.milvus.grpc.MsgBase getBase() {
    return base_ == null ? io.milvus.grpc.MsgBase.getDefaultInstance() : base_;
  }
  /**
   * .milvus.proto.common.MsgBase base = 1;
   */
  @java.lang.Override
  public io.milvus.grpc.MsgBaseOrBuilder getBaseOrBuilder() {
    return getBase();
  }

  public static final int DB_NAME_FIELD_NUMBER = 2;
  private volatile java.lang.Object dbName_;
  /**
   * string db_name = 2;
   * @return The dbName.
   */
  @java.lang.Override
  public java.lang.String getDbName() {
    java.lang.Object ref = dbName_;
    if (ref instanceof java.lang.String) {
      return (java.lang.String) ref;
    } else {
      com.google.protobuf.ByteString bs = 
          (com.google.protobuf.ByteString) ref;
      java.lang.String s = bs.toStringUtf8();
      dbName_ = s;
      return s;
    }
  }
  /**
   * string db_name = 2;
   * @return The bytes for dbName.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString
      getDbNameBytes() {
    java.lang.Object ref = dbName_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b = 
          com.google.protobuf.ByteString.copyFromUtf8(
              (java.lang.String) ref);
      dbName_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int COLLECTION_NAME_FIELD_NUMBER = 3;
  private volatile java.lang.Object collectionName_;
  /**
   * string collection_name = 3;
   * @return The collectionName.
   */
  @java.lang.Override
  public java.lang.String getCollectionName() {
    java.lang.Object ref = collectionName_;
    if (ref instanceof java.lang.String) {
      return (java.lang.String) ref;
    } else {
      com.google.protobuf.ByteString bs = 
          (com.google.protobuf.ByteString) ref;
      java.lang.String s = bs.toStringUtf8();
      collectionName_ = s;
      return s;
    }
  }
  /**
   * string collection_name = 3;
   * @return The bytes for collectionName.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString
      getCollectionNameBytes() {
    java.lang.Object ref = collectionName_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b = 
          com.google.protobuf.ByteString.copyFromUtf8(
              (java.lang.String) ref);
      collectionName_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int PARTITION_NAME_FIELD_NUMBER = 4;
  private volatile java.lang.Object partitionName_;
  /**
   * string partition_name = 4;
   * @return The partitionName.
   */
  @java.lang.Override
  public java.lang.String getPartitionName() {
    java.lang.Object ref = partitionName_;
    if (ref instanceof java.lang.String) {
      return (java.lang.String) ref;
    } else {
      com.google.protobuf.ByteString bs = 
          (com.google.protobuf.ByteString) ref;
      java.lang.String s = bs.toStringUtf8();
      partitionName_ = s;
      return s;
    }
  }
  /**
   * string partition_name = 4;
   * @return The bytes for partitionName.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString
      getPartitionNameBytes() {
    java.lang.Object ref = partitionName_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b = 
          com.google.protobuf.ByteString.copyFromUtf8(
              (java.lang.String) ref);
      partitionName_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int EXPR_FIELD_NUMBER = 5;
  private volatile java.lang.Object expr_;
  /**
   * string expr = 5;
   * @return The expr.
   */
  @java.lang.Override
  public java.lang.String getExpr() {
    java.lang.Object ref = expr_;
    if (ref instanceof java.lang.String) {
      return (java.lang.String) ref;
    } else {
      com.google.protobuf.ByteString bs = 
          (com.google.protobuf.ByteString) ref;
      java.lang.String s = bs.toStringUtf8();
      expr_ = s;
      return s;
    }
  }
  /**
   * string expr = 5;
   * @return The bytes for expr.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString
      getExprBytes() {
    java.lang.Object ref = expr_;
    if (ref instanceof java.lang.String) {
      com.google.protobuf.ByteString b = 
          com.google.protobuf.ByteString.copyFromUtf8(
              (java.lang.String) ref);
      expr_ = b;
      return b;
    } else {
      return (com.google.protobuf.ByteString) ref;
    }
  }

  public static final int HASH_KEYS_FIELD_NUMBER = 6;
  private com.google.protobuf.Internal.IntList hashKeys_;
  /**
   * repeated uint32 hash_keys = 6;
   * @return A list containing the hashKeys.
   */
  @java.lang.Override
  public java.util.List
      getHashKeysList() {
    return hashKeys_;
  }
  /**
   * repeated uint32 hash_keys = 6;
   * @return The count of hashKeys.
   */
  public int getHashKeysCount() {
    return hashKeys_.size();
  }
  /**
   * repeated uint32 hash_keys = 6;
   * @param index The index of the element to return.
   * @return The hashKeys at the given index.
   */
  public int getHashKeys(int index) {
    return hashKeys_.getInt(index);
  }
  private int hashKeysMemoizedSerializedSize = -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 (base_ != null) {
      output.writeMessage(1, getBase());
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dbName_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 2, dbName_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(collectionName_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 3, collectionName_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(partitionName_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 4, partitionName_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(expr_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 5, expr_);
    }
    if (getHashKeysList().size() > 0) {
      output.writeUInt32NoTag(50);
      output.writeUInt32NoTag(hashKeysMemoizedSerializedSize);
    }
    for (int i = 0; i < hashKeys_.size(); i++) {
      output.writeUInt32NoTag(hashKeys_.getInt(i));
    }
    unknownFields.writeTo(output);
  }

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

    size = 0;
    if (base_ != null) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(1, getBase());
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dbName_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, dbName_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(collectionName_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, collectionName_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(partitionName_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, partitionName_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(expr_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, expr_);
    }
    {
      int dataSize = 0;
      for (int i = 0; i < hashKeys_.size(); i++) {
        dataSize += com.google.protobuf.CodedOutputStream
          .computeUInt32SizeNoTag(hashKeys_.getInt(i));
      }
      size += dataSize;
      if (!getHashKeysList().isEmpty()) {
        size += 1;
        size += com.google.protobuf.CodedOutputStream
            .computeInt32SizeNoTag(dataSize);
      }
      hashKeysMemoizedSerializedSize = dataSize;
    }
    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 io.milvus.grpc.DeleteRequest)) {
      return super.equals(obj);
    }
    io.milvus.grpc.DeleteRequest other = (io.milvus.grpc.DeleteRequest) obj;

    if (hasBase() != other.hasBase()) return false;
    if (hasBase()) {
      if (!getBase()
          .equals(other.getBase())) return false;
    }
    if (!getDbName()
        .equals(other.getDbName())) return false;
    if (!getCollectionName()
        .equals(other.getCollectionName())) return false;
    if (!getPartitionName()
        .equals(other.getPartitionName())) return false;
    if (!getExpr()
        .equals(other.getExpr())) return false;
    if (!getHashKeysList()
        .equals(other.getHashKeysList())) return false;
    if (!unknownFields.equals(other.unknownFields)) return false;
    return true;
  }

  @java.lang.Override
  public int hashCode() {
    if (memoizedHashCode != 0) {
      return memoizedHashCode;
    }
    int hash = 41;
    hash = (19 * hash) + getDescriptor().hashCode();
    if (hasBase()) {
      hash = (37 * hash) + BASE_FIELD_NUMBER;
      hash = (53 * hash) + getBase().hashCode();
    }
    hash = (37 * hash) + DB_NAME_FIELD_NUMBER;
    hash = (53 * hash) + getDbName().hashCode();
    hash = (37 * hash) + COLLECTION_NAME_FIELD_NUMBER;
    hash = (53 * hash) + getCollectionName().hashCode();
    hash = (37 * hash) + PARTITION_NAME_FIELD_NUMBER;
    hash = (53 * hash) + getPartitionName().hashCode();
    hash = (37 * hash) + EXPR_FIELD_NUMBER;
    hash = (53 * hash) + getExpr().hashCode();
    if (getHashKeysCount() > 0) {
      hash = (37 * hash) + HASH_KEYS_FIELD_NUMBER;
      hash = (53 * hash) + getHashKeysList().hashCode();
    }
    hash = (29 * hash) + unknownFields.hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static io.milvus.grpc.DeleteRequest parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static io.milvus.grpc.DeleteRequest parseFrom(
      java.nio.ByteBuffer data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static io.milvus.grpc.DeleteRequest parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static io.milvus.grpc.DeleteRequest parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static io.milvus.grpc.DeleteRequest parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static io.milvus.grpc.DeleteRequest parseFrom(
      byte[] data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static io.milvus.grpc.DeleteRequest parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static io.milvus.grpc.DeleteRequest 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 io.milvus.grpc.DeleteRequest parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input);
  }
  public static io.milvus.grpc.DeleteRequest 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 io.milvus.grpc.DeleteRequest parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static io.milvus.grpc.DeleteRequest 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(io.milvus.grpc.DeleteRequest 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 milvus.proto.milvus.DeleteRequest}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:milvus.proto.milvus.DeleteRequest)
      io.milvus.grpc.DeleteRequestOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_DeleteRequest_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_DeleteRequest_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              io.milvus.grpc.DeleteRequest.class, io.milvus.grpc.DeleteRequest.Builder.class);
    }

    // Construct using io.milvus.grpc.DeleteRequest.newBuilder()
    private Builder() {
      maybeForceBuilderInitialization();
    }

    private Builder(
        com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);
      maybeForceBuilderInitialization();
    }
    private void maybeForceBuilderInitialization() {
      if (com.google.protobuf.GeneratedMessageV3
              .alwaysUseFieldBuilders) {
      }
    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      if (baseBuilder_ == null) {
        base_ = null;
      } else {
        base_ = null;
        baseBuilder_ = null;
      }
      dbName_ = "";

      collectionName_ = "";

      partitionName_ = "";

      expr_ = "";

      hashKeys_ = emptyIntList();
      bitField0_ = (bitField0_ & ~0x00000001);
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_DeleteRequest_descriptor;
    }

    @java.lang.Override
    public io.milvus.grpc.DeleteRequest getDefaultInstanceForType() {
      return io.milvus.grpc.DeleteRequest.getDefaultInstance();
    }

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

    @java.lang.Override
    public io.milvus.grpc.DeleteRequest buildPartial() {
      io.milvus.grpc.DeleteRequest result = new io.milvus.grpc.DeleteRequest(this);
      int from_bitField0_ = bitField0_;
      if (baseBuilder_ == null) {
        result.base_ = base_;
      } else {
        result.base_ = baseBuilder_.build();
      }
      result.dbName_ = dbName_;
      result.collectionName_ = collectionName_;
      result.partitionName_ = partitionName_;
      result.expr_ = expr_;
      if (((bitField0_ & 0x00000001) != 0)) {
        hashKeys_.makeImmutable();
        bitField0_ = (bitField0_ & ~0x00000001);
      }
      result.hashKeys_ = hashKeys_;
      onBuilt();
      return result;
    }

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

    public Builder mergeFrom(io.milvus.grpc.DeleteRequest other) {
      if (other == io.milvus.grpc.DeleteRequest.getDefaultInstance()) return this;
      if (other.hasBase()) {
        mergeBase(other.getBase());
      }
      if (!other.getDbName().isEmpty()) {
        dbName_ = other.dbName_;
        onChanged();
      }
      if (!other.getCollectionName().isEmpty()) {
        collectionName_ = other.collectionName_;
        onChanged();
      }
      if (!other.getPartitionName().isEmpty()) {
        partitionName_ = other.partitionName_;
        onChanged();
      }
      if (!other.getExpr().isEmpty()) {
        expr_ = other.expr_;
        onChanged();
      }
      if (!other.hashKeys_.isEmpty()) {
        if (hashKeys_.isEmpty()) {
          hashKeys_ = other.hashKeys_;
          bitField0_ = (bitField0_ & ~0x00000001);
        } else {
          ensureHashKeysIsMutable();
          hashKeys_.addAll(other.hashKeys_);
        }
        onChanged();
      }
      this.mergeUnknownFields(other.unknownFields);
      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 {
      io.milvus.grpc.DeleteRequest parsedMessage = null;
      try {
        parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        parsedMessage = (io.milvus.grpc.DeleteRequest) e.getUnfinishedMessage();
        throw e.unwrapIOException();
      } finally {
        if (parsedMessage != null) {
          mergeFrom(parsedMessage);
        }
      }
      return this;
    }
    private int bitField0_;

    private io.milvus.grpc.MsgBase base_;
    private com.google.protobuf.SingleFieldBuilderV3<
        io.milvus.grpc.MsgBase, io.milvus.grpc.MsgBase.Builder, io.milvus.grpc.MsgBaseOrBuilder> baseBuilder_;
    /**
     * .milvus.proto.common.MsgBase base = 1;
     * @return Whether the base field is set.
     */
    public boolean hasBase() {
      return baseBuilder_ != null || base_ != null;
    }
    /**
     * .milvus.proto.common.MsgBase base = 1;
     * @return The base.
     */
    public io.milvus.grpc.MsgBase getBase() {
      if (baseBuilder_ == null) {
        return base_ == null ? io.milvus.grpc.MsgBase.getDefaultInstance() : base_;
      } else {
        return baseBuilder_.getMessage();
      }
    }
    /**
     * .milvus.proto.common.MsgBase base = 1;
     */
    public Builder setBase(io.milvus.grpc.MsgBase value) {
      if (baseBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        base_ = value;
        onChanged();
      } else {
        baseBuilder_.setMessage(value);
      }

      return this;
    }
    /**
     * .milvus.proto.common.MsgBase base = 1;
     */
    public Builder setBase(
        io.milvus.grpc.MsgBase.Builder builderForValue) {
      if (baseBuilder_ == null) {
        base_ = builderForValue.build();
        onChanged();
      } else {
        baseBuilder_.setMessage(builderForValue.build());
      }

      return this;
    }
    /**
     * .milvus.proto.common.MsgBase base = 1;
     */
    public Builder mergeBase(io.milvus.grpc.MsgBase value) {
      if (baseBuilder_ == null) {
        if (base_ != null) {
          base_ =
            io.milvus.grpc.MsgBase.newBuilder(base_).mergeFrom(value).buildPartial();
        } else {
          base_ = value;
        }
        onChanged();
      } else {
        baseBuilder_.mergeFrom(value);
      }

      return this;
    }
    /**
     * .milvus.proto.common.MsgBase base = 1;
     */
    public Builder clearBase() {
      if (baseBuilder_ == null) {
        base_ = null;
        onChanged();
      } else {
        base_ = null;
        baseBuilder_ = null;
      }

      return this;
    }
    /**
     * .milvus.proto.common.MsgBase base = 1;
     */
    public io.milvus.grpc.MsgBase.Builder getBaseBuilder() {
      
      onChanged();
      return getBaseFieldBuilder().getBuilder();
    }
    /**
     * .milvus.proto.common.MsgBase base = 1;
     */
    public io.milvus.grpc.MsgBaseOrBuilder getBaseOrBuilder() {
      if (baseBuilder_ != null) {
        return baseBuilder_.getMessageOrBuilder();
      } else {
        return base_ == null ?
            io.milvus.grpc.MsgBase.getDefaultInstance() : base_;
      }
    }
    /**
     * .milvus.proto.common.MsgBase base = 1;
     */
    private com.google.protobuf.SingleFieldBuilderV3<
        io.milvus.grpc.MsgBase, io.milvus.grpc.MsgBase.Builder, io.milvus.grpc.MsgBaseOrBuilder> 
        getBaseFieldBuilder() {
      if (baseBuilder_ == null) {
        baseBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
            io.milvus.grpc.MsgBase, io.milvus.grpc.MsgBase.Builder, io.milvus.grpc.MsgBaseOrBuilder>(
                getBase(),
                getParentForChildren(),
                isClean());
        base_ = null;
      }
      return baseBuilder_;
    }

    private java.lang.Object dbName_ = "";
    /**
     * string db_name = 2;
     * @return The dbName.
     */
    public java.lang.String getDbName() {
      java.lang.Object ref = dbName_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs =
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        dbName_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     * string db_name = 2;
     * @return The bytes for dbName.
     */
    public com.google.protobuf.ByteString
        getDbNameBytes() {
      java.lang.Object ref = dbName_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        dbName_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     * string db_name = 2;
     * @param value The dbName to set.
     * @return This builder for chaining.
     */
    public Builder setDbName(
        java.lang.String value) {
      if (value == null) {
    throw new NullPointerException();
  }
  
      dbName_ = value;
      onChanged();
      return this;
    }
    /**
     * string db_name = 2;
     * @return This builder for chaining.
     */
    public Builder clearDbName() {
      
      dbName_ = getDefaultInstance().getDbName();
      onChanged();
      return this;
    }
    /**
     * string db_name = 2;
     * @param value The bytes for dbName to set.
     * @return This builder for chaining.
     */
    public Builder setDbNameBytes(
        com.google.protobuf.ByteString value) {
      if (value == null) {
    throw new NullPointerException();
  }
  checkByteStringIsUtf8(value);
      
      dbName_ = value;
      onChanged();
      return this;
    }

    private java.lang.Object collectionName_ = "";
    /**
     * string collection_name = 3;
     * @return The collectionName.
     */
    public java.lang.String getCollectionName() {
      java.lang.Object ref = collectionName_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs =
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        collectionName_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     * string collection_name = 3;
     * @return The bytes for collectionName.
     */
    public com.google.protobuf.ByteString
        getCollectionNameBytes() {
      java.lang.Object ref = collectionName_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        collectionName_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     * string collection_name = 3;
     * @param value The collectionName to set.
     * @return This builder for chaining.
     */
    public Builder setCollectionName(
        java.lang.String value) {
      if (value == null) {
    throw new NullPointerException();
  }
  
      collectionName_ = value;
      onChanged();
      return this;
    }
    /**
     * string collection_name = 3;
     * @return This builder for chaining.
     */
    public Builder clearCollectionName() {
      
      collectionName_ = getDefaultInstance().getCollectionName();
      onChanged();
      return this;
    }
    /**
     * string collection_name = 3;
     * @param value The bytes for collectionName to set.
     * @return This builder for chaining.
     */
    public Builder setCollectionNameBytes(
        com.google.protobuf.ByteString value) {
      if (value == null) {
    throw new NullPointerException();
  }
  checkByteStringIsUtf8(value);
      
      collectionName_ = value;
      onChanged();
      return this;
    }

    private java.lang.Object partitionName_ = "";
    /**
     * string partition_name = 4;
     * @return The partitionName.
     */
    public java.lang.String getPartitionName() {
      java.lang.Object ref = partitionName_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs =
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        partitionName_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     * string partition_name = 4;
     * @return The bytes for partitionName.
     */
    public com.google.protobuf.ByteString
        getPartitionNameBytes() {
      java.lang.Object ref = partitionName_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        partitionName_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     * string partition_name = 4;
     * @param value The partitionName to set.
     * @return This builder for chaining.
     */
    public Builder setPartitionName(
        java.lang.String value) {
      if (value == null) {
    throw new NullPointerException();
  }
  
      partitionName_ = value;
      onChanged();
      return this;
    }
    /**
     * string partition_name = 4;
     * @return This builder for chaining.
     */
    public Builder clearPartitionName() {
      
      partitionName_ = getDefaultInstance().getPartitionName();
      onChanged();
      return this;
    }
    /**
     * string partition_name = 4;
     * @param value The bytes for partitionName to set.
     * @return This builder for chaining.
     */
    public Builder setPartitionNameBytes(
        com.google.protobuf.ByteString value) {
      if (value == null) {
    throw new NullPointerException();
  }
  checkByteStringIsUtf8(value);
      
      partitionName_ = value;
      onChanged();
      return this;
    }

    private java.lang.Object expr_ = "";
    /**
     * string expr = 5;
     * @return The expr.
     */
    public java.lang.String getExpr() {
      java.lang.Object ref = expr_;
      if (!(ref instanceof java.lang.String)) {
        com.google.protobuf.ByteString bs =
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        expr_ = s;
        return s;
      } else {
        return (java.lang.String) ref;
      }
    }
    /**
     * string expr = 5;
     * @return The bytes for expr.
     */
    public com.google.protobuf.ByteString
        getExprBytes() {
      java.lang.Object ref = expr_;
      if (ref instanceof String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        expr_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }
    /**
     * string expr = 5;
     * @param value The expr to set.
     * @return This builder for chaining.
     */
    public Builder setExpr(
        java.lang.String value) {
      if (value == null) {
    throw new NullPointerException();
  }
  
      expr_ = value;
      onChanged();
      return this;
    }
    /**
     * string expr = 5;
     * @return This builder for chaining.
     */
    public Builder clearExpr() {
      
      expr_ = getDefaultInstance().getExpr();
      onChanged();
      return this;
    }
    /**
     * string expr = 5;
     * @param value The bytes for expr to set.
     * @return This builder for chaining.
     */
    public Builder setExprBytes(
        com.google.protobuf.ByteString value) {
      if (value == null) {
    throw new NullPointerException();
  }
  checkByteStringIsUtf8(value);
      
      expr_ = value;
      onChanged();
      return this;
    }

    private com.google.protobuf.Internal.IntList hashKeys_ = emptyIntList();
    private void ensureHashKeysIsMutable() {
      if (!((bitField0_ & 0x00000001) != 0)) {
        hashKeys_ = mutableCopy(hashKeys_);
        bitField0_ |= 0x00000001;
       }
    }
    /**
     * repeated uint32 hash_keys = 6;
     * @return A list containing the hashKeys.
     */
    public java.util.List
        getHashKeysList() {
      return ((bitField0_ & 0x00000001) != 0) ?
               java.util.Collections.unmodifiableList(hashKeys_) : hashKeys_;
    }
    /**
     * repeated uint32 hash_keys = 6;
     * @return The count of hashKeys.
     */
    public int getHashKeysCount() {
      return hashKeys_.size();
    }
    /**
     * repeated uint32 hash_keys = 6;
     * @param index The index of the element to return.
     * @return The hashKeys at the given index.
     */
    public int getHashKeys(int index) {
      return hashKeys_.getInt(index);
    }
    /**
     * repeated uint32 hash_keys = 6;
     * @param index The index to set the value at.
     * @param value The hashKeys to set.
     * @return This builder for chaining.
     */
    public Builder setHashKeys(
        int index, int value) {
      ensureHashKeysIsMutable();
      hashKeys_.setInt(index, value);
      onChanged();
      return this;
    }
    /**
     * repeated uint32 hash_keys = 6;
     * @param value The hashKeys to add.
     * @return This builder for chaining.
     */
    public Builder addHashKeys(int value) {
      ensureHashKeysIsMutable();
      hashKeys_.addInt(value);
      onChanged();
      return this;
    }
    /**
     * repeated uint32 hash_keys = 6;
     * @param values The hashKeys to add.
     * @return This builder for chaining.
     */
    public Builder addAllHashKeys(
        java.lang.Iterable values) {
      ensureHashKeysIsMutable();
      com.google.protobuf.AbstractMessageLite.Builder.addAll(
          values, hashKeys_);
      onChanged();
      return this;
    }
    /**
     * repeated uint32 hash_keys = 6;
     * @return This builder for chaining.
     */
    public Builder clearHashKeys() {
      hashKeys_ = emptyIntList();
      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:milvus.proto.milvus.DeleteRequest)
  }

  // @@protoc_insertion_point(class_scope:milvus.proto.milvus.DeleteRequest)
  private static final io.milvus.grpc.DeleteRequest DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new io.milvus.grpc.DeleteRequest();
  }

  public static io.milvus.grpc.DeleteRequest getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser
      PARSER = new com.google.protobuf.AbstractParser() {
    @java.lang.Override
    public DeleteRequest parsePartialFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return new DeleteRequest(input, extensionRegistry);
    }
  };

  public static com.google.protobuf.Parser parser() {
    return PARSER;
  }

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

  @java.lang.Override
  public io.milvus.grpc.DeleteRequest getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy