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

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

There is a newer version: 2.4.8
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.GetFlushStateRequest}
 */
public final class GetFlushStateRequest extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:milvus.proto.milvus.GetFlushStateRequest)
    GetFlushStateRequestOrBuilder {
private static final long serialVersionUID = 0L;
  // Use GetFlushStateRequest.newBuilder() to construct.
  private GetFlushStateRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private GetFlushStateRequest() {
    segmentIDs_ = emptyLongList();
    dbName_ = "";
    collectionName_ = "";
  }

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

  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_GetFlushStateRequest_descriptor;
  }

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

  public static final int SEGMENTIDS_FIELD_NUMBER = 1;
  @SuppressWarnings("serial")
  private com.google.protobuf.Internal.LongList segmentIDs_ =
      emptyLongList();
  /**
   * repeated int64 segmentIDs = 1;
   * @return A list containing the segmentIDs.
   */
  @java.lang.Override
  public java.util.List
      getSegmentIDsList() {
    return segmentIDs_;
  }
  /**
   * repeated int64 segmentIDs = 1;
   * @return The count of segmentIDs.
   */
  public int getSegmentIDsCount() {
    return segmentIDs_.size();
  }
  /**
   * repeated int64 segmentIDs = 1;
   * @param index The index of the element to return.
   * @return The segmentIDs at the given index.
   */
  public long getSegmentIDs(int index) {
    return segmentIDs_.getLong(index);
  }
  private int segmentIDsMemoizedSerializedSize = -1;

  public static final int FLUSH_TS_FIELD_NUMBER = 2;
  private long flushTs_ = 0L;
  /**
   * uint64 flush_ts = 2;
   * @return The flushTs.
   */
  @java.lang.Override
  public long getFlushTs() {
    return flushTs_;
  }

  public static final int DB_NAME_FIELD_NUMBER = 3;
  @SuppressWarnings("serial")
  private volatile java.lang.Object dbName_ = "";
  /**
   * string db_name = 3;
   * @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 = 3;
   * @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 = 4;
  @SuppressWarnings("serial")
  private volatile java.lang.Object collectionName_ = "";
  /**
   * string collection_name = 4;
   * @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 = 4;
   * @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;
    }
  }

  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 (getSegmentIDsList().size() > 0) {
      output.writeUInt32NoTag(10);
      output.writeUInt32NoTag(segmentIDsMemoizedSerializedSize);
    }
    for (int i = 0; i < segmentIDs_.size(); i++) {
      output.writeInt64NoTag(segmentIDs_.getLong(i));
    }
    if (flushTs_ != 0L) {
      output.writeUInt64(2, flushTs_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dbName_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 3, dbName_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(collectionName_)) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 4, collectionName_);
    }
    getUnknownFields().writeTo(output);
  }

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

    size = 0;
    {
      int dataSize = 0;
      for (int i = 0; i < segmentIDs_.size(); i++) {
        dataSize += com.google.protobuf.CodedOutputStream
          .computeInt64SizeNoTag(segmentIDs_.getLong(i));
      }
      size += dataSize;
      if (!getSegmentIDsList().isEmpty()) {
        size += 1;
        size += com.google.protobuf.CodedOutputStream
            .computeInt32SizeNoTag(dataSize);
      }
      segmentIDsMemoizedSerializedSize = dataSize;
    }
    if (flushTs_ != 0L) {
      size += com.google.protobuf.CodedOutputStream
        .computeUInt64Size(2, flushTs_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dbName_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, dbName_);
    }
    if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(collectionName_)) {
      size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, collectionName_);
    }
    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 io.milvus.grpc.GetFlushStateRequest)) {
      return super.equals(obj);
    }
    io.milvus.grpc.GetFlushStateRequest other = (io.milvus.grpc.GetFlushStateRequest) obj;

    if (!getSegmentIDsList()
        .equals(other.getSegmentIDsList())) return false;
    if (getFlushTs()
        != other.getFlushTs()) return false;
    if (!getDbName()
        .equals(other.getDbName())) return false;
    if (!getCollectionName()
        .equals(other.getCollectionName())) 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 (getSegmentIDsCount() > 0) {
      hash = (37 * hash) + SEGMENTIDS_FIELD_NUMBER;
      hash = (53 * hash) + getSegmentIDsList().hashCode();
    }
    hash = (37 * hash) + FLUSH_TS_FIELD_NUMBER;
    hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
        getFlushTs());
    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 = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

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

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

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

    // Construct using io.milvus.grpc.GetFlushStateRequest.newBuilder()
    private Builder() {

    }

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

    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      segmentIDs_ = emptyLongList();
      flushTs_ = 0L;
      dbName_ = "";
      collectionName_ = "";
      return this;
    }

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

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

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

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

    private void buildPartial0(io.milvus.grpc.GetFlushStateRequest result) {
      int from_bitField0_ = bitField0_;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        segmentIDs_.makeImmutable();
        result.segmentIDs_ = segmentIDs_;
      }
      if (((from_bitField0_ & 0x00000002) != 0)) {
        result.flushTs_ = flushTs_;
      }
      if (((from_bitField0_ & 0x00000004) != 0)) {
        result.dbName_ = dbName_;
      }
      if (((from_bitField0_ & 0x00000008) != 0)) {
        result.collectionName_ = collectionName_;
      }
    }

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

    public Builder mergeFrom(io.milvus.grpc.GetFlushStateRequest other) {
      if (other == io.milvus.grpc.GetFlushStateRequest.getDefaultInstance()) return this;
      if (!other.segmentIDs_.isEmpty()) {
        if (segmentIDs_.isEmpty()) {
          segmentIDs_ = other.segmentIDs_;
          segmentIDs_.makeImmutable();
          bitField0_ |= 0x00000001;
        } else {
          ensureSegmentIDsIsMutable();
          segmentIDs_.addAll(other.segmentIDs_);
        }
        onChanged();
      }
      if (other.getFlushTs() != 0L) {
        setFlushTs(other.getFlushTs());
      }
      if (!other.getDbName().isEmpty()) {
        dbName_ = other.dbName_;
        bitField0_ |= 0x00000004;
        onChanged();
      }
      if (!other.getCollectionName().isEmpty()) {
        collectionName_ = other.collectionName_;
        bitField0_ |= 0x00000008;
        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: {
              long v = input.readInt64();
              ensureSegmentIDsIsMutable();
              segmentIDs_.addLong(v);
              break;
            } // case 8
            case 10: {
              int length = input.readRawVarint32();
              int limit = input.pushLimit(length);
              ensureSegmentIDsIsMutable();
              while (input.getBytesUntilLimit() > 0) {
                segmentIDs_.addLong(input.readInt64());
              }
              input.popLimit(limit);
              break;
            } // case 10
            case 16: {
              flushTs_ = input.readUInt64();
              bitField0_ |= 0x00000002;
              break;
            } // case 16
            case 26: {
              dbName_ = input.readStringRequireUtf8();
              bitField0_ |= 0x00000004;
              break;
            } // case 26
            case 34: {
              collectionName_ = input.readStringRequireUtf8();
              bitField0_ |= 0x00000008;
              break;
            } // case 34
            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.LongList segmentIDs_ = emptyLongList();
    private void ensureSegmentIDsIsMutable() {
      if (!segmentIDs_.isModifiable()) {
        segmentIDs_ = makeMutableCopy(segmentIDs_);
      }
      bitField0_ |= 0x00000001;
    }
    /**
     * repeated int64 segmentIDs = 1;
     * @return A list containing the segmentIDs.
     */
    public java.util.List
        getSegmentIDsList() {
      segmentIDs_.makeImmutable();
      return segmentIDs_;
    }
    /**
     * repeated int64 segmentIDs = 1;
     * @return The count of segmentIDs.
     */
    public int getSegmentIDsCount() {
      return segmentIDs_.size();
    }
    /**
     * repeated int64 segmentIDs = 1;
     * @param index The index of the element to return.
     * @return The segmentIDs at the given index.
     */
    public long getSegmentIDs(int index) {
      return segmentIDs_.getLong(index);
    }
    /**
     * repeated int64 segmentIDs = 1;
     * @param index The index to set the value at.
     * @param value The segmentIDs to set.
     * @return This builder for chaining.
     */
    public Builder setSegmentIDs(
        int index, long value) {

      ensureSegmentIDsIsMutable();
      segmentIDs_.setLong(index, value);
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * repeated int64 segmentIDs = 1;
     * @param value The segmentIDs to add.
     * @return This builder for chaining.
     */
    public Builder addSegmentIDs(long value) {

      ensureSegmentIDsIsMutable();
      segmentIDs_.addLong(value);
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * repeated int64 segmentIDs = 1;
     * @param values The segmentIDs to add.
     * @return This builder for chaining.
     */
    public Builder addAllSegmentIDs(
        java.lang.Iterable values) {
      ensureSegmentIDsIsMutable();
      com.google.protobuf.AbstractMessageLite.Builder.addAll(
          values, segmentIDs_);
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * repeated int64 segmentIDs = 1;
     * @return This builder for chaining.
     */
    public Builder clearSegmentIDs() {
      segmentIDs_ = emptyLongList();
      bitField0_ = (bitField0_ & ~0x00000001);
      onChanged();
      return this;
    }

    private long flushTs_ ;
    /**
     * uint64 flush_ts = 2;
     * @return The flushTs.
     */
    @java.lang.Override
    public long getFlushTs() {
      return flushTs_;
    }
    /**
     * uint64 flush_ts = 2;
     * @param value The flushTs to set.
     * @return This builder for chaining.
     */
    public Builder setFlushTs(long value) {

      flushTs_ = value;
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * uint64 flush_ts = 2;
     * @return This builder for chaining.
     */
    public Builder clearFlushTs() {
      bitField0_ = (bitField0_ & ~0x00000002);
      flushTs_ = 0L;
      onChanged();
      return this;
    }

    private java.lang.Object dbName_ = "";
    /**
     * string db_name = 3;
     * @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 = 3;
     * @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 = 3;
     * @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;
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     * string db_name = 3;
     * @return This builder for chaining.
     */
    public Builder clearDbName() {
      dbName_ = getDefaultInstance().getDbName();
      bitField0_ = (bitField0_ & ~0x00000004);
      onChanged();
      return this;
    }
    /**
     * string db_name = 3;
     * @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;
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }

    private java.lang.Object collectionName_ = "";
    /**
     * string collection_name = 4;
     * @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 = 4;
     * @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 = 4;
     * @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;
      bitField0_ |= 0x00000008;
      onChanged();
      return this;
    }
    /**
     * string collection_name = 4;
     * @return This builder for chaining.
     */
    public Builder clearCollectionName() {
      collectionName_ = getDefaultInstance().getCollectionName();
      bitField0_ = (bitField0_ & ~0x00000008);
      onChanged();
      return this;
    }
    /**
     * string collection_name = 4;
     * @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;
      bitField0_ |= 0x00000008;
      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.GetFlushStateRequest)
  }

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

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

  private static final com.google.protobuf.Parser
      PARSER = new com.google.protobuf.AbstractParser() {
    @java.lang.Override
    public GetFlushStateRequest parsePartialFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      Builder builder = newBuilder();
      try {
        builder.mergeFrom(input, extensionRegistry);
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(builder.buildPartial());
      } catch (com.google.protobuf.UninitializedMessageException e) {
        throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(e)
            .setUnfinishedMessage(builder.buildPartial());
      }
      return builder.buildPartial();
    }
  };

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

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

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

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy