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

io.milvus.grpc.GetImportStateResponse 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 restore the calcDistance interface that is removed in 2.1.0-beta4

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.GetImportStateResponse}
 */
public final class GetImportStateResponse extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:milvus.proto.milvus.GetImportStateResponse)
    GetImportStateResponseOrBuilder {
private static final long serialVersionUID = 0L;
  // Use GetImportStateResponse.newBuilder() to construct.
  private GetImportStateResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private GetImportStateResponse() {
    state_ = 0;
    idList_ = emptyLongList();
    infos_ = java.util.Collections.emptyList();
  }

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

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private GetImportStateResponse(
      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.Status.Builder subBuilder = null;
            if (status_ != null) {
              subBuilder = status_.toBuilder();
            }
            status_ = input.readMessage(io.milvus.grpc.Status.parser(), extensionRegistry);
            if (subBuilder != null) {
              subBuilder.mergeFrom(status_);
              status_ = subBuilder.buildPartial();
            }

            break;
          }
          case 16: {
            int rawValue = input.readEnum();

            state_ = rawValue;
            break;
          }
          case 24: {

            rowCount_ = input.readInt64();
            break;
          }
          case 32: {
            if (!((mutable_bitField0_ & 0x00000001) != 0)) {
              idList_ = newLongList();
              mutable_bitField0_ |= 0x00000001;
            }
            idList_.addLong(input.readInt64());
            break;
          }
          case 34: {
            int length = input.readRawVarint32();
            int limit = input.pushLimit(length);
            if (!((mutable_bitField0_ & 0x00000001) != 0) && input.getBytesUntilLimit() > 0) {
              idList_ = newLongList();
              mutable_bitField0_ |= 0x00000001;
            }
            while (input.getBytesUntilLimit() > 0) {
              idList_.addLong(input.readInt64());
            }
            input.popLimit(limit);
            break;
          }
          case 42: {
            if (!((mutable_bitField0_ & 0x00000002) != 0)) {
              infos_ = new java.util.ArrayList();
              mutable_bitField0_ |= 0x00000002;
            }
            infos_.add(
                input.readMessage(io.milvus.grpc.KeyValuePair.parser(), extensionRegistry));
            break;
          }
          case 48: {

            id_ = input.readInt64();
            break;
          }
          case 56: {

            dataQueryable_ = input.readBool();
            break;
          }
          case 64: {

            dataIndexed_ = input.readBool();
            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)) {
        idList_.makeImmutable(); // C
      }
      if (((mutable_bitField0_ & 0x00000002) != 0)) {
        infos_ = java.util.Collections.unmodifiableList(infos_);
      }
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_GetImportStateResponse_descriptor;
  }

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

  public static final int STATUS_FIELD_NUMBER = 1;
  private io.milvus.grpc.Status status_;
  /**
   * .milvus.proto.common.Status status = 1;
   * @return Whether the status field is set.
   */
  @java.lang.Override
  public boolean hasStatus() {
    return status_ != null;
  }
  /**
   * .milvus.proto.common.Status status = 1;
   * @return The status.
   */
  @java.lang.Override
  public io.milvus.grpc.Status getStatus() {
    return status_ == null ? io.milvus.grpc.Status.getDefaultInstance() : status_;
  }
  /**
   * .milvus.proto.common.Status status = 1;
   */
  @java.lang.Override
  public io.milvus.grpc.StatusOrBuilder getStatusOrBuilder() {
    return getStatus();
  }

  public static final int STATE_FIELD_NUMBER = 2;
  private int state_;
  /**
   * 
   * is this import task finished or not
   * 
* * .milvus.proto.common.ImportState state = 2; * @return The enum numeric value on the wire for state. */ @java.lang.Override public int getStateValue() { return state_; } /** *
   * is this import task finished or not
   * 
* * .milvus.proto.common.ImportState state = 2; * @return The state. */ @java.lang.Override public io.milvus.grpc.ImportState getState() { @SuppressWarnings("deprecation") io.milvus.grpc.ImportState result = io.milvus.grpc.ImportState.valueOf(state_); return result == null ? io.milvus.grpc.ImportState.UNRECOGNIZED : result; } public static final int ROW_COUNT_FIELD_NUMBER = 3; private long rowCount_; /** *
   * if the task is finished, this value is how many rows are imported. if the task is not finished, this value is how many rows are parsed. return 0 if failed.
   * 
* * int64 row_count = 3; * @return The rowCount. */ @java.lang.Override public long getRowCount() { return rowCount_; } public static final int ID_LIST_FIELD_NUMBER = 4; private com.google.protobuf.Internal.LongList idList_; /** *
   * auto generated ids if the primary key is autoid
   * 
* * repeated int64 id_list = 4; * @return A list containing the idList. */ @java.lang.Override public java.util.List getIdListList() { return idList_; } /** *
   * auto generated ids if the primary key is autoid
   * 
* * repeated int64 id_list = 4; * @return The count of idList. */ public int getIdListCount() { return idList_.size(); } /** *
   * auto generated ids if the primary key is autoid
   * 
* * repeated int64 id_list = 4; * @param index The index of the element to return. * @return The idList at the given index. */ public long getIdList(int index) { return idList_.getLong(index); } private int idListMemoizedSerializedSize = -1; public static final int INFOS_FIELD_NUMBER = 5; private java.util.List infos_; /** *
   * more information about the task, progress percent, file path, failed reason, etc.
   * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ @java.lang.Override public java.util.List getInfosList() { return infos_; } /** *
   * more information about the task, progress percent, file path, failed reason, etc.
   * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ @java.lang.Override public java.util.List getInfosOrBuilderList() { return infos_; } /** *
   * more information about the task, progress percent, file path, failed reason, etc.
   * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ @java.lang.Override public int getInfosCount() { return infos_.size(); } /** *
   * more information about the task, progress percent, file path, failed reason, etc.
   * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ @java.lang.Override public io.milvus.grpc.KeyValuePair getInfos(int index) { return infos_.get(index); } /** *
   * more information about the task, progress percent, file path, failed reason, etc.
   * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ @java.lang.Override public io.milvus.grpc.KeyValuePairOrBuilder getInfosOrBuilder( int index) { return infos_.get(index); } public static final int ID_FIELD_NUMBER = 6; private long id_; /** *
   * id of an import task
   * 
* * int64 id = 6; * @return The id. */ @java.lang.Override public long getId() { return id_; } public static final int DATA_QUERYABLE_FIELD_NUMBER = 7; private boolean dataQueryable_; /** *
   * A flag indicating whether import data are queryable (i.e. loaded in query nodes)
   * 
* * bool data_queryable = 7; * @return The dataQueryable. */ @java.lang.Override public boolean getDataQueryable() { return dataQueryable_; } public static final int DATA_INDEXED_FIELD_NUMBER = 8; private boolean dataIndexed_; /** *
   * A flag indicating whether import data are indexed.
   * 
* * bool data_indexed = 8; * @return The dataIndexed. */ @java.lang.Override public boolean getDataIndexed() { return dataIndexed_; } 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 (status_ != null) { output.writeMessage(1, getStatus()); } if (state_ != io.milvus.grpc.ImportState.ImportPending.getNumber()) { output.writeEnum(2, state_); } if (rowCount_ != 0L) { output.writeInt64(3, rowCount_); } if (getIdListList().size() > 0) { output.writeUInt32NoTag(34); output.writeUInt32NoTag(idListMemoizedSerializedSize); } for (int i = 0; i < idList_.size(); i++) { output.writeInt64NoTag(idList_.getLong(i)); } for (int i = 0; i < infos_.size(); i++) { output.writeMessage(5, infos_.get(i)); } if (id_ != 0L) { output.writeInt64(6, id_); } if (dataQueryable_ != false) { output.writeBool(7, dataQueryable_); } if (dataIndexed_ != false) { output.writeBool(8, dataIndexed_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (status_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, getStatus()); } if (state_ != io.milvus.grpc.ImportState.ImportPending.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(2, state_); } if (rowCount_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(3, rowCount_); } { int dataSize = 0; for (int i = 0; i < idList_.size(); i++) { dataSize += com.google.protobuf.CodedOutputStream .computeInt64SizeNoTag(idList_.getLong(i)); } size += dataSize; if (!getIdListList().isEmpty()) { size += 1; size += com.google.protobuf.CodedOutputStream .computeInt32SizeNoTag(dataSize); } idListMemoizedSerializedSize = dataSize; } for (int i = 0; i < infos_.size(); i++) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(5, infos_.get(i)); } if (id_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(6, id_); } if (dataQueryable_ != false) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(7, dataQueryable_); } if (dataIndexed_ != false) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(8, dataIndexed_); } 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.GetImportStateResponse)) { return super.equals(obj); } io.milvus.grpc.GetImportStateResponse other = (io.milvus.grpc.GetImportStateResponse) obj; if (hasStatus() != other.hasStatus()) return false; if (hasStatus()) { if (!getStatus() .equals(other.getStatus())) return false; } if (state_ != other.state_) return false; if (getRowCount() != other.getRowCount()) return false; if (!getIdListList() .equals(other.getIdListList())) return false; if (!getInfosList() .equals(other.getInfosList())) return false; if (getId() != other.getId()) return false; if (getDataQueryable() != other.getDataQueryable()) return false; if (getDataIndexed() != other.getDataIndexed()) 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 (hasStatus()) { hash = (37 * hash) + STATUS_FIELD_NUMBER; hash = (53 * hash) + getStatus().hashCode(); } hash = (37 * hash) + STATE_FIELD_NUMBER; hash = (53 * hash) + state_; hash = (37 * hash) + ROW_COUNT_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getRowCount()); if (getIdListCount() > 0) { hash = (37 * hash) + ID_LIST_FIELD_NUMBER; hash = (53 * hash) + getIdListList().hashCode(); } if (getInfosCount() > 0) { hash = (37 * hash) + INFOS_FIELD_NUMBER; hash = (53 * hash) + getInfosList().hashCode(); } hash = (37 * hash) + ID_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getId()); hash = (37 * hash) + DATA_QUERYABLE_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getDataQueryable()); hash = (37 * hash) + DATA_INDEXED_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getDataIndexed()); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static io.milvus.grpc.GetImportStateResponse parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.milvus.grpc.GetImportStateResponse 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.GetImportStateResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.milvus.grpc.GetImportStateResponse 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.GetImportStateResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.milvus.grpc.GetImportStateResponse parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.milvus.grpc.GetImportStateResponse parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.milvus.grpc.GetImportStateResponse 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.GetImportStateResponse parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.milvus.grpc.GetImportStateResponse 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.GetImportStateResponse parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.milvus.grpc.GetImportStateResponse 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.GetImportStateResponse 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.GetImportStateResponse} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:milvus.proto.milvus.GetImportStateResponse) io.milvus.grpc.GetImportStateResponseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_GetImportStateResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_GetImportStateResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( io.milvus.grpc.GetImportStateResponse.class, io.milvus.grpc.GetImportStateResponse.Builder.class); } // Construct using io.milvus.grpc.GetImportStateResponse.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getInfosFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); if (statusBuilder_ == null) { status_ = null; } else { status_ = null; statusBuilder_ = null; } state_ = 0; rowCount_ = 0L; idList_ = emptyLongList(); bitField0_ = (bitField0_ & ~0x00000001); if (infosBuilder_ == null) { infos_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000002); } else { infosBuilder_.clear(); } id_ = 0L; dataQueryable_ = false; dataIndexed_ = false; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_GetImportStateResponse_descriptor; } @java.lang.Override public io.milvus.grpc.GetImportStateResponse getDefaultInstanceForType() { return io.milvus.grpc.GetImportStateResponse.getDefaultInstance(); } @java.lang.Override public io.milvus.grpc.GetImportStateResponse build() { io.milvus.grpc.GetImportStateResponse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.milvus.grpc.GetImportStateResponse buildPartial() { io.milvus.grpc.GetImportStateResponse result = new io.milvus.grpc.GetImportStateResponse(this); int from_bitField0_ = bitField0_; if (statusBuilder_ == null) { result.status_ = status_; } else { result.status_ = statusBuilder_.build(); } result.state_ = state_; result.rowCount_ = rowCount_; if (((bitField0_ & 0x00000001) != 0)) { idList_.makeImmutable(); bitField0_ = (bitField0_ & ~0x00000001); } result.idList_ = idList_; if (infosBuilder_ == null) { if (((bitField0_ & 0x00000002) != 0)) { infos_ = java.util.Collections.unmodifiableList(infos_); bitField0_ = (bitField0_ & ~0x00000002); } result.infos_ = infos_; } else { result.infos_ = infosBuilder_.build(); } result.id_ = id_; result.dataQueryable_ = dataQueryable_; result.dataIndexed_ = dataIndexed_; 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.GetImportStateResponse) { return mergeFrom((io.milvus.grpc.GetImportStateResponse)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.milvus.grpc.GetImportStateResponse other) { if (other == io.milvus.grpc.GetImportStateResponse.getDefaultInstance()) return this; if (other.hasStatus()) { mergeStatus(other.getStatus()); } if (other.state_ != 0) { setStateValue(other.getStateValue()); } if (other.getRowCount() != 0L) { setRowCount(other.getRowCount()); } if (!other.idList_.isEmpty()) { if (idList_.isEmpty()) { idList_ = other.idList_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureIdListIsMutable(); idList_.addAll(other.idList_); } onChanged(); } if (infosBuilder_ == null) { if (!other.infos_.isEmpty()) { if (infos_.isEmpty()) { infos_ = other.infos_; bitField0_ = (bitField0_ & ~0x00000002); } else { ensureInfosIsMutable(); infos_.addAll(other.infos_); } onChanged(); } } else { if (!other.infos_.isEmpty()) { if (infosBuilder_.isEmpty()) { infosBuilder_.dispose(); infosBuilder_ = null; infos_ = other.infos_; bitField0_ = (bitField0_ & ~0x00000002); infosBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getInfosFieldBuilder() : null; } else { infosBuilder_.addAllMessages(other.infos_); } } } if (other.getId() != 0L) { setId(other.getId()); } if (other.getDataQueryable() != false) { setDataQueryable(other.getDataQueryable()); } if (other.getDataIndexed() != false) { setDataIndexed(other.getDataIndexed()); } 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.GetImportStateResponse parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (io.milvus.grpc.GetImportStateResponse) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private io.milvus.grpc.Status status_; private com.google.protobuf.SingleFieldBuilderV3< io.milvus.grpc.Status, io.milvus.grpc.Status.Builder, io.milvus.grpc.StatusOrBuilder> statusBuilder_; /** * .milvus.proto.common.Status status = 1; * @return Whether the status field is set. */ public boolean hasStatus() { return statusBuilder_ != null || status_ != null; } /** * .milvus.proto.common.Status status = 1; * @return The status. */ public io.milvus.grpc.Status getStatus() { if (statusBuilder_ == null) { return status_ == null ? io.milvus.grpc.Status.getDefaultInstance() : status_; } else { return statusBuilder_.getMessage(); } } /** * .milvus.proto.common.Status status = 1; */ public Builder setStatus(io.milvus.grpc.Status value) { if (statusBuilder_ == null) { if (value == null) { throw new NullPointerException(); } status_ = value; onChanged(); } else { statusBuilder_.setMessage(value); } return this; } /** * .milvus.proto.common.Status status = 1; */ public Builder setStatus( io.milvus.grpc.Status.Builder builderForValue) { if (statusBuilder_ == null) { status_ = builderForValue.build(); onChanged(); } else { statusBuilder_.setMessage(builderForValue.build()); } return this; } /** * .milvus.proto.common.Status status = 1; */ public Builder mergeStatus(io.milvus.grpc.Status value) { if (statusBuilder_ == null) { if (status_ != null) { status_ = io.milvus.grpc.Status.newBuilder(status_).mergeFrom(value).buildPartial(); } else { status_ = value; } onChanged(); } else { statusBuilder_.mergeFrom(value); } return this; } /** * .milvus.proto.common.Status status = 1; */ public Builder clearStatus() { if (statusBuilder_ == null) { status_ = null; onChanged(); } else { status_ = null; statusBuilder_ = null; } return this; } /** * .milvus.proto.common.Status status = 1; */ public io.milvus.grpc.Status.Builder getStatusBuilder() { onChanged(); return getStatusFieldBuilder().getBuilder(); } /** * .milvus.proto.common.Status status = 1; */ public io.milvus.grpc.StatusOrBuilder getStatusOrBuilder() { if (statusBuilder_ != null) { return statusBuilder_.getMessageOrBuilder(); } else { return status_ == null ? io.milvus.grpc.Status.getDefaultInstance() : status_; } } /** * .milvus.proto.common.Status status = 1; */ private com.google.protobuf.SingleFieldBuilderV3< io.milvus.grpc.Status, io.milvus.grpc.Status.Builder, io.milvus.grpc.StatusOrBuilder> getStatusFieldBuilder() { if (statusBuilder_ == null) { statusBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< io.milvus.grpc.Status, io.milvus.grpc.Status.Builder, io.milvus.grpc.StatusOrBuilder>( getStatus(), getParentForChildren(), isClean()); status_ = null; } return statusBuilder_; } private int state_ = 0; /** *
     * is this import task finished or not
     * 
* * .milvus.proto.common.ImportState state = 2; * @return The enum numeric value on the wire for state. */ @java.lang.Override public int getStateValue() { return state_; } /** *
     * is this import task finished or not
     * 
* * .milvus.proto.common.ImportState state = 2; * @param value The enum numeric value on the wire for state to set. * @return This builder for chaining. */ public Builder setStateValue(int value) { state_ = value; onChanged(); return this; } /** *
     * is this import task finished or not
     * 
* * .milvus.proto.common.ImportState state = 2; * @return The state. */ @java.lang.Override public io.milvus.grpc.ImportState getState() { @SuppressWarnings("deprecation") io.milvus.grpc.ImportState result = io.milvus.grpc.ImportState.valueOf(state_); return result == null ? io.milvus.grpc.ImportState.UNRECOGNIZED : result; } /** *
     * is this import task finished or not
     * 
* * .milvus.proto.common.ImportState state = 2; * @param value The state to set. * @return This builder for chaining. */ public Builder setState(io.milvus.grpc.ImportState value) { if (value == null) { throw new NullPointerException(); } state_ = value.getNumber(); onChanged(); return this; } /** *
     * is this import task finished or not
     * 
* * .milvus.proto.common.ImportState state = 2; * @return This builder for chaining. */ public Builder clearState() { state_ = 0; onChanged(); return this; } private long rowCount_ ; /** *
     * if the task is finished, this value is how many rows are imported. if the task is not finished, this value is how many rows are parsed. return 0 if failed.
     * 
* * int64 row_count = 3; * @return The rowCount. */ @java.lang.Override public long getRowCount() { return rowCount_; } /** *
     * if the task is finished, this value is how many rows are imported. if the task is not finished, this value is how many rows are parsed. return 0 if failed.
     * 
* * int64 row_count = 3; * @param value The rowCount to set. * @return This builder for chaining. */ public Builder setRowCount(long value) { rowCount_ = value; onChanged(); return this; } /** *
     * if the task is finished, this value is how many rows are imported. if the task is not finished, this value is how many rows are parsed. return 0 if failed.
     * 
* * int64 row_count = 3; * @return This builder for chaining. */ public Builder clearRowCount() { rowCount_ = 0L; onChanged(); return this; } private com.google.protobuf.Internal.LongList idList_ = emptyLongList(); private void ensureIdListIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { idList_ = mutableCopy(idList_); bitField0_ |= 0x00000001; } } /** *
     * auto generated ids if the primary key is autoid
     * 
* * repeated int64 id_list = 4; * @return A list containing the idList. */ public java.util.List getIdListList() { return ((bitField0_ & 0x00000001) != 0) ? java.util.Collections.unmodifiableList(idList_) : idList_; } /** *
     * auto generated ids if the primary key is autoid
     * 
* * repeated int64 id_list = 4; * @return The count of idList. */ public int getIdListCount() { return idList_.size(); } /** *
     * auto generated ids if the primary key is autoid
     * 
* * repeated int64 id_list = 4; * @param index The index of the element to return. * @return The idList at the given index. */ public long getIdList(int index) { return idList_.getLong(index); } /** *
     * auto generated ids if the primary key is autoid
     * 
* * repeated int64 id_list = 4; * @param index The index to set the value at. * @param value The idList to set. * @return This builder for chaining. */ public Builder setIdList( int index, long value) { ensureIdListIsMutable(); idList_.setLong(index, value); onChanged(); return this; } /** *
     * auto generated ids if the primary key is autoid
     * 
* * repeated int64 id_list = 4; * @param value The idList to add. * @return This builder for chaining. */ public Builder addIdList(long value) { ensureIdListIsMutable(); idList_.addLong(value); onChanged(); return this; } /** *
     * auto generated ids if the primary key is autoid
     * 
* * repeated int64 id_list = 4; * @param values The idList to add. * @return This builder for chaining. */ public Builder addAllIdList( java.lang.Iterable values) { ensureIdListIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, idList_); onChanged(); return this; } /** *
     * auto generated ids if the primary key is autoid
     * 
* * repeated int64 id_list = 4; * @return This builder for chaining. */ public Builder clearIdList() { idList_ = emptyLongList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } private java.util.List infos_ = java.util.Collections.emptyList(); private void ensureInfosIsMutable() { if (!((bitField0_ & 0x00000002) != 0)) { infos_ = new java.util.ArrayList(infos_); bitField0_ |= 0x00000002; } } private com.google.protobuf.RepeatedFieldBuilderV3< io.milvus.grpc.KeyValuePair, io.milvus.grpc.KeyValuePair.Builder, io.milvus.grpc.KeyValuePairOrBuilder> infosBuilder_; /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public java.util.List getInfosList() { if (infosBuilder_ == null) { return java.util.Collections.unmodifiableList(infos_); } else { return infosBuilder_.getMessageList(); } } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public int getInfosCount() { if (infosBuilder_ == null) { return infos_.size(); } else { return infosBuilder_.getCount(); } } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public io.milvus.grpc.KeyValuePair getInfos(int index) { if (infosBuilder_ == null) { return infos_.get(index); } else { return infosBuilder_.getMessage(index); } } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public Builder setInfos( int index, io.milvus.grpc.KeyValuePair value) { if (infosBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureInfosIsMutable(); infos_.set(index, value); onChanged(); } else { infosBuilder_.setMessage(index, value); } return this; } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public Builder setInfos( int index, io.milvus.grpc.KeyValuePair.Builder builderForValue) { if (infosBuilder_ == null) { ensureInfosIsMutable(); infos_.set(index, builderForValue.build()); onChanged(); } else { infosBuilder_.setMessage(index, builderForValue.build()); } return this; } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public Builder addInfos(io.milvus.grpc.KeyValuePair value) { if (infosBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureInfosIsMutable(); infos_.add(value); onChanged(); } else { infosBuilder_.addMessage(value); } return this; } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public Builder addInfos( int index, io.milvus.grpc.KeyValuePair value) { if (infosBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureInfosIsMutable(); infos_.add(index, value); onChanged(); } else { infosBuilder_.addMessage(index, value); } return this; } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public Builder addInfos( io.milvus.grpc.KeyValuePair.Builder builderForValue) { if (infosBuilder_ == null) { ensureInfosIsMutable(); infos_.add(builderForValue.build()); onChanged(); } else { infosBuilder_.addMessage(builderForValue.build()); } return this; } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public Builder addInfos( int index, io.milvus.grpc.KeyValuePair.Builder builderForValue) { if (infosBuilder_ == null) { ensureInfosIsMutable(); infos_.add(index, builderForValue.build()); onChanged(); } else { infosBuilder_.addMessage(index, builderForValue.build()); } return this; } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public Builder addAllInfos( java.lang.Iterable values) { if (infosBuilder_ == null) { ensureInfosIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, infos_); onChanged(); } else { infosBuilder_.addAllMessages(values); } return this; } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public Builder clearInfos() { if (infosBuilder_ == null) { infos_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); } else { infosBuilder_.clear(); } return this; } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public Builder removeInfos(int index) { if (infosBuilder_ == null) { ensureInfosIsMutable(); infos_.remove(index); onChanged(); } else { infosBuilder_.remove(index); } return this; } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public io.milvus.grpc.KeyValuePair.Builder getInfosBuilder( int index) { return getInfosFieldBuilder().getBuilder(index); } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public io.milvus.grpc.KeyValuePairOrBuilder getInfosOrBuilder( int index) { if (infosBuilder_ == null) { return infos_.get(index); } else { return infosBuilder_.getMessageOrBuilder(index); } } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public java.util.List getInfosOrBuilderList() { if (infosBuilder_ != null) { return infosBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(infos_); } } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public io.milvus.grpc.KeyValuePair.Builder addInfosBuilder() { return getInfosFieldBuilder().addBuilder( io.milvus.grpc.KeyValuePair.getDefaultInstance()); } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public io.milvus.grpc.KeyValuePair.Builder addInfosBuilder( int index) { return getInfosFieldBuilder().addBuilder( index, io.milvus.grpc.KeyValuePair.getDefaultInstance()); } /** *
     * more information about the task, progress percent, file path, failed reason, etc.
     * 
* * repeated .milvus.proto.common.KeyValuePair infos = 5; */ public java.util.List getInfosBuilderList() { return getInfosFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< io.milvus.grpc.KeyValuePair, io.milvus.grpc.KeyValuePair.Builder, io.milvus.grpc.KeyValuePairOrBuilder> getInfosFieldBuilder() { if (infosBuilder_ == null) { infosBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< io.milvus.grpc.KeyValuePair, io.milvus.grpc.KeyValuePair.Builder, io.milvus.grpc.KeyValuePairOrBuilder>( infos_, ((bitField0_ & 0x00000002) != 0), getParentForChildren(), isClean()); infos_ = null; } return infosBuilder_; } private long id_ ; /** *
     * id of an import task
     * 
* * int64 id = 6; * @return The id. */ @java.lang.Override public long getId() { return id_; } /** *
     * id of an import task
     * 
* * int64 id = 6; * @param value The id to set. * @return This builder for chaining. */ public Builder setId(long value) { id_ = value; onChanged(); return this; } /** *
     * id of an import task
     * 
* * int64 id = 6; * @return This builder for chaining. */ public Builder clearId() { id_ = 0L; onChanged(); return this; } private boolean dataQueryable_ ; /** *
     * A flag indicating whether import data are queryable (i.e. loaded in query nodes)
     * 
* * bool data_queryable = 7; * @return The dataQueryable. */ @java.lang.Override public boolean getDataQueryable() { return dataQueryable_; } /** *
     * A flag indicating whether import data are queryable (i.e. loaded in query nodes)
     * 
* * bool data_queryable = 7; * @param value The dataQueryable to set. * @return This builder for chaining. */ public Builder setDataQueryable(boolean value) { dataQueryable_ = value; onChanged(); return this; } /** *
     * A flag indicating whether import data are queryable (i.e. loaded in query nodes)
     * 
* * bool data_queryable = 7; * @return This builder for chaining. */ public Builder clearDataQueryable() { dataQueryable_ = false; onChanged(); return this; } private boolean dataIndexed_ ; /** *
     * A flag indicating whether import data are indexed.
     * 
* * bool data_indexed = 8; * @return The dataIndexed. */ @java.lang.Override public boolean getDataIndexed() { return dataIndexed_; } /** *
     * A flag indicating whether import data are indexed.
     * 
* * bool data_indexed = 8; * @param value The dataIndexed to set. * @return This builder for chaining. */ public Builder setDataIndexed(boolean value) { dataIndexed_ = value; onChanged(); return this; } /** *
     * A flag indicating whether import data are indexed.
     * 
* * bool data_indexed = 8; * @return This builder for chaining. */ public Builder clearDataIndexed() { dataIndexed_ = 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:milvus.proto.milvus.GetImportStateResponse) } // @@protoc_insertion_point(class_scope:milvus.proto.milvus.GetImportStateResponse) private static final io.milvus.grpc.GetImportStateResponse DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.milvus.grpc.GetImportStateResponse(); } public static io.milvus.grpc.GetImportStateResponse getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public GetImportStateResponse parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new GetImportStateResponse(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.GetImportStateResponse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy