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

io.milvus.grpc.GetImportStateResponse 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.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();
    segmentIds_ = emptyLongList();
  }

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

  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);
  }

  private int bitField0_;
  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 ((bitField0_ & 0x00000001) != 0);
  }
  /**
   * .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 status_ == null ? io.milvus.grpc.Status.getDefaultInstance() : status_;
  }

  public static final int STATE_FIELD_NUMBER = 2;
  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; * @return The state. */ @java.lang.Override public io.milvus.grpc.ImportState getState() { io.milvus.grpc.ImportState result = io.milvus.grpc.ImportState.forNumber(state_); return result == null ? io.milvus.grpc.ImportState.UNRECOGNIZED : result; } public static final int ROW_COUNT_FIELD_NUMBER = 3; private long rowCount_ = 0L; /** *
   * 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; @SuppressWarnings("serial") private com.google.protobuf.Internal.LongList idList_ = emptyLongList(); /** *
   * 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; @SuppressWarnings("serial") 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_ = 0L; /** *
   * id of an import task
   * 
* * int64 id = 6; * @return The id. */ @java.lang.Override public long getId() { return id_; } public static final int COLLECTION_ID_FIELD_NUMBER = 7; private long collectionId_ = 0L; /** *
   * collection ID of the import task.
   * 
* * int64 collection_id = 7; * @return The collectionId. */ @java.lang.Override public long getCollectionId() { return collectionId_; } public static final int SEGMENT_IDS_FIELD_NUMBER = 8; @SuppressWarnings("serial") private com.google.protobuf.Internal.LongList segmentIds_ = emptyLongList(); /** *
   * a list of segment IDs created by the import task.
   * 
* * repeated int64 segment_ids = 8; * @return A list containing the segmentIds. */ @java.lang.Override public java.util.List getSegmentIdsList() { return segmentIds_; } /** *
   * a list of segment IDs created by the import task.
   * 
* * repeated int64 segment_ids = 8; * @return The count of segmentIds. */ public int getSegmentIdsCount() { return segmentIds_.size(); } /** *
   * a list of segment IDs created by the import task.
   * 
* * repeated int64 segment_ids = 8; * @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 CREATE_TS_FIELD_NUMBER = 9; private long createTs_ = 0L; /** *
   * timestamp when the import task is created.
   * 
* * int64 create_ts = 9; * @return The createTs. */ @java.lang.Override public long getCreateTs() { return createTs_; } 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 (((bitField0_ & 0x00000001) != 0)) { 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 (collectionId_ != 0L) { output.writeInt64(7, collectionId_); } if (getSegmentIdsList().size() > 0) { output.writeUInt32NoTag(66); output.writeUInt32NoTag(segmentIdsMemoizedSerializedSize); } for (int i = 0; i < segmentIds_.size(); i++) { output.writeInt64NoTag(segmentIds_.getLong(i)); } if (createTs_ != 0L) { output.writeInt64(9, createTs_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) != 0)) { 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 (collectionId_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(7, collectionId_); } { 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 (createTs_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(9, createTs_); } 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.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 (getCollectionId() != other.getCollectionId()) return false; if (!getSegmentIdsList() .equals(other.getSegmentIdsList())) return false; if (getCreateTs() != other.getCreateTs()) 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 (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) + COLLECTION_ID_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getCollectionId()); if (getSegmentIdsCount() > 0) { hash = (37 * hash) + SEGMENT_IDS_FIELD_NUMBER; hash = (53 * hash) + getSegmentIdsList().hashCode(); } hash = (37 * hash) + CREATE_TS_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getCreateTs()); hash = (29 * hash) + getUnknownFields().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) { getStatusFieldBuilder(); getInfosFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; status_ = null; if (statusBuilder_ != null) { statusBuilder_.dispose(); statusBuilder_ = null; } state_ = 0; rowCount_ = 0L; idList_ = emptyLongList(); if (infosBuilder_ == null) { infos_ = java.util.Collections.emptyList(); } else { infos_ = null; infosBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000010); id_ = 0L; collectionId_ = 0L; segmentIds_ = emptyLongList(); createTs_ = 0L; 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); buildPartialRepeatedFields(result); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartialRepeatedFields(io.milvus.grpc.GetImportStateResponse result) { if (infosBuilder_ == null) { if (((bitField0_ & 0x00000010) != 0)) { infos_ = java.util.Collections.unmodifiableList(infos_); bitField0_ = (bitField0_ & ~0x00000010); } result.infos_ = infos_; } else { result.infos_ = infosBuilder_.build(); } } private void buildPartial0(io.milvus.grpc.GetImportStateResponse result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { result.status_ = statusBuilder_ == null ? status_ : statusBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000002) != 0)) { result.state_ = state_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.rowCount_ = rowCount_; } if (((from_bitField0_ & 0x00000008) != 0)) { idList_.makeImmutable(); result.idList_ = idList_; } if (((from_bitField0_ & 0x00000020) != 0)) { result.id_ = id_; } if (((from_bitField0_ & 0x00000040) != 0)) { result.collectionId_ = collectionId_; } if (((from_bitField0_ & 0x00000080) != 0)) { segmentIds_.makeImmutable(); result.segmentIds_ = segmentIds_; } if (((from_bitField0_ & 0x00000100) != 0)) { result.createTs_ = createTs_; } result.bitField0_ |= to_bitField0_; } @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_; idList_.makeImmutable(); bitField0_ |= 0x00000008; } else { ensureIdListIsMutable(); idList_.addAll(other.idList_); } onChanged(); } if (infosBuilder_ == null) { if (!other.infos_.isEmpty()) { if (infos_.isEmpty()) { infos_ = other.infos_; bitField0_ = (bitField0_ & ~0x00000010); } else { ensureInfosIsMutable(); infos_.addAll(other.infos_); } onChanged(); } } else { if (!other.infos_.isEmpty()) { if (infosBuilder_.isEmpty()) { infosBuilder_.dispose(); infosBuilder_ = null; infos_ = other.infos_; bitField0_ = (bitField0_ & ~0x00000010); infosBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getInfosFieldBuilder() : null; } else { infosBuilder_.addAllMessages(other.infos_); } } } if (other.getId() != 0L) { setId(other.getId()); } if (other.getCollectionId() != 0L) { setCollectionId(other.getCollectionId()); } if (!other.segmentIds_.isEmpty()) { if (segmentIds_.isEmpty()) { segmentIds_ = other.segmentIds_; segmentIds_.makeImmutable(); bitField0_ |= 0x00000080; } else { ensureSegmentIdsIsMutable(); segmentIds_.addAll(other.segmentIds_); } onChanged(); } if (other.getCreateTs() != 0L) { setCreateTs(other.getCreateTs()); } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { input.readMessage( getStatusFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000001; break; } // case 10 case 16: { state_ = input.readEnum(); bitField0_ |= 0x00000002; break; } // case 16 case 24: { rowCount_ = input.readInt64(); bitField0_ |= 0x00000004; break; } // case 24 case 32: { long v = input.readInt64(); ensureIdListIsMutable(); idList_.addLong(v); break; } // case 32 case 34: { int length = input.readRawVarint32(); int limit = input.pushLimit(length); ensureIdListIsMutable(); while (input.getBytesUntilLimit() > 0) { idList_.addLong(input.readInt64()); } input.popLimit(limit); break; } // case 34 case 42: { io.milvus.grpc.KeyValuePair m = input.readMessage( io.milvus.grpc.KeyValuePair.parser(), extensionRegistry); if (infosBuilder_ == null) { ensureInfosIsMutable(); infos_.add(m); } else { infosBuilder_.addMessage(m); } break; } // case 42 case 48: { id_ = input.readInt64(); bitField0_ |= 0x00000020; break; } // case 48 case 56: { collectionId_ = input.readInt64(); bitField0_ |= 0x00000040; break; } // case 56 case 64: { long v = input.readInt64(); ensureSegmentIdsIsMutable(); segmentIds_.addLong(v); break; } // case 64 case 66: { int length = input.readRawVarint32(); int limit = input.pushLimit(length); ensureSegmentIdsIsMutable(); while (input.getBytesUntilLimit() > 0) { segmentIds_.addLong(input.readInt64()); } input.popLimit(limit); break; } // case 66 case 72: { createTs_ = input.readInt64(); bitField0_ |= 0x00000100; break; } // case 72 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 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 ((bitField0_ & 0x00000001) != 0); } /** * .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; } else { statusBuilder_.setMessage(value); } bitField0_ |= 0x00000001; onChanged(); return this; } /** * .milvus.proto.common.Status status = 1; */ public Builder setStatus( io.milvus.grpc.Status.Builder builderForValue) { if (statusBuilder_ == null) { status_ = builderForValue.build(); } else { statusBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000001; onChanged(); return this; } /** * .milvus.proto.common.Status status = 1; */ public Builder mergeStatus(io.milvus.grpc.Status value) { if (statusBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0) && status_ != null && status_ != io.milvus.grpc.Status.getDefaultInstance()) { getStatusBuilder().mergeFrom(value); } else { status_ = value; } } else { statusBuilder_.mergeFrom(value); } if (status_ != null) { bitField0_ |= 0x00000001; onChanged(); } return this; } /** * .milvus.proto.common.Status status = 1; */ public Builder clearStatus() { bitField0_ = (bitField0_ & ~0x00000001); status_ = null; if (statusBuilder_ != null) { statusBuilder_.dispose(); statusBuilder_ = null; } onChanged(); return this; } /** * .milvus.proto.common.Status status = 1; */ public io.milvus.grpc.Status.Builder getStatusBuilder() { bitField0_ |= 0x00000001; 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; bitField0_ |= 0x00000002; 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() { io.milvus.grpc.ImportState result = io.milvus.grpc.ImportState.forNumber(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(); } bitField0_ |= 0x00000002; 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() { bitField0_ = (bitField0_ & ~0x00000002); 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; bitField0_ |= 0x00000004; 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() { bitField0_ = (bitField0_ & ~0x00000004); rowCount_ = 0L; onChanged(); return this; } private com.google.protobuf.Internal.LongList idList_ = emptyLongList(); private void ensureIdListIsMutable() { if (!idList_.isModifiable()) { idList_ = makeMutableCopy(idList_); } bitField0_ |= 0x00000008; } /** *
     * 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() { idList_.makeImmutable(); 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); } /** *
     * 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); bitField0_ |= 0x00000008; 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); bitField0_ |= 0x00000008; 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_); bitField0_ |= 0x00000008; 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_ & ~0x00000008); onChanged(); return this; } private java.util.List infos_ = java.util.Collections.emptyList(); private void ensureInfosIsMutable() { if (!((bitField0_ & 0x00000010) != 0)) { infos_ = new java.util.ArrayList(infos_); bitField0_ |= 0x00000010; } } 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_ & ~0x00000010); 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_ & 0x00000010) != 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; bitField0_ |= 0x00000020; onChanged(); return this; } /** *
     * id of an import task
     * 
* * int64 id = 6; * @return This builder for chaining. */ public Builder clearId() { bitField0_ = (bitField0_ & ~0x00000020); id_ = 0L; onChanged(); return this; } private long collectionId_ ; /** *
     * collection ID of the import task.
     * 
* * int64 collection_id = 7; * @return The collectionId. */ @java.lang.Override public long getCollectionId() { return collectionId_; } /** *
     * collection ID of the import task.
     * 
* * int64 collection_id = 7; * @param value The collectionId to set. * @return This builder for chaining. */ public Builder setCollectionId(long value) { collectionId_ = value; bitField0_ |= 0x00000040; onChanged(); return this; } /** *
     * collection ID of the import task.
     * 
* * int64 collection_id = 7; * @return This builder for chaining. */ public Builder clearCollectionId() { bitField0_ = (bitField0_ & ~0x00000040); collectionId_ = 0L; onChanged(); return this; } private com.google.protobuf.Internal.LongList segmentIds_ = emptyLongList(); private void ensureSegmentIdsIsMutable() { if (!segmentIds_.isModifiable()) { segmentIds_ = makeMutableCopy(segmentIds_); } bitField0_ |= 0x00000080; } /** *
     * a list of segment IDs created by the import task.
     * 
* * repeated int64 segment_ids = 8; * @return A list containing the segmentIds. */ public java.util.List getSegmentIdsList() { segmentIds_.makeImmutable(); return segmentIds_; } /** *
     * a list of segment IDs created by the import task.
     * 
* * repeated int64 segment_ids = 8; * @return The count of segmentIds. */ public int getSegmentIdsCount() { return segmentIds_.size(); } /** *
     * a list of segment IDs created by the import task.
     * 
* * repeated int64 segment_ids = 8; * @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); } /** *
     * a list of segment IDs created by the import task.
     * 
* * repeated int64 segment_ids = 8; * @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_ |= 0x00000080; onChanged(); return this; } /** *
     * a list of segment IDs created by the import task.
     * 
* * repeated int64 segment_ids = 8; * @param value The segmentIds to add. * @return This builder for chaining. */ public Builder addSegmentIds(long value) { ensureSegmentIdsIsMutable(); segmentIds_.addLong(value); bitField0_ |= 0x00000080; onChanged(); return this; } /** *
     * a list of segment IDs created by the import task.
     * 
* * repeated int64 segment_ids = 8; * @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_ |= 0x00000080; onChanged(); return this; } /** *
     * a list of segment IDs created by the import task.
     * 
* * repeated int64 segment_ids = 8; * @return This builder for chaining. */ public Builder clearSegmentIds() { segmentIds_ = emptyLongList(); bitField0_ = (bitField0_ & ~0x00000080); onChanged(); return this; } private long createTs_ ; /** *
     * timestamp when the import task is created.
     * 
* * int64 create_ts = 9; * @return The createTs. */ @java.lang.Override public long getCreateTs() { return createTs_; } /** *
     * timestamp when the import task is created.
     * 
* * int64 create_ts = 9; * @param value The createTs to set. * @return This builder for chaining. */ public Builder setCreateTs(long value) { createTs_ = value; bitField0_ |= 0x00000100; onChanged(); return this; } /** *
     * timestamp when the import task is created.
     * 
* * int64 create_ts = 9; * @return This builder for chaining. */ public Builder clearCreateTs() { bitField0_ = (bitField0_ & ~0x00000100); createTs_ = 0L; 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 { 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.GetImportStateResponse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy