io.milvus.grpc.UpsertRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of milvus-sdk-java Show documentation
Show all versions of milvus-sdk-java Show documentation
Java SDK for Milvus, a distributed high-performance vector database.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: milvus.proto
package io.milvus.grpc;
/**
* Protobuf type {@code milvus.proto.milvus.UpsertRequest}
*/
public final class UpsertRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:milvus.proto.milvus.UpsertRequest)
UpsertRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use UpsertRequest.newBuilder() to construct.
private UpsertRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private UpsertRequest() {
dbName_ = "";
collectionName_ = "";
partitionName_ = "";
fieldsData_ = java.util.Collections.emptyList();
hashKeys_ = emptyIntList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new UpsertRequest();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_UpsertRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_UpsertRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.milvus.grpc.UpsertRequest.class, io.milvus.grpc.UpsertRequest.Builder.class);
}
private int bitField0_;
public static final int BASE_FIELD_NUMBER = 1;
private io.milvus.grpc.MsgBase base_;
/**
* .milvus.proto.common.MsgBase base = 1;
* @return Whether the base field is set.
*/
@java.lang.Override
public boolean hasBase() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .milvus.proto.common.MsgBase base = 1;
* @return The base.
*/
@java.lang.Override
public io.milvus.grpc.MsgBase getBase() {
return base_ == null ? io.milvus.grpc.MsgBase.getDefaultInstance() : base_;
}
/**
* .milvus.proto.common.MsgBase base = 1;
*/
@java.lang.Override
public io.milvus.grpc.MsgBaseOrBuilder getBaseOrBuilder() {
return base_ == null ? io.milvus.grpc.MsgBase.getDefaultInstance() : base_;
}
public static final int DB_NAME_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object dbName_ = "";
/**
* string db_name = 2;
* @return The dbName.
*/
@java.lang.Override
public java.lang.String getDbName() {
java.lang.Object ref = dbName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
dbName_ = s;
return s;
}
}
/**
* string db_name = 2;
* @return The bytes for dbName.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getDbNameBytes() {
java.lang.Object ref = dbName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
dbName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int COLLECTION_NAME_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private volatile java.lang.Object collectionName_ = "";
/**
* string collection_name = 3;
* @return The collectionName.
*/
@java.lang.Override
public java.lang.String getCollectionName() {
java.lang.Object ref = collectionName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
collectionName_ = s;
return s;
}
}
/**
* string collection_name = 3;
* @return The bytes for collectionName.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getCollectionNameBytes() {
java.lang.Object ref = collectionName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
collectionName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PARTITION_NAME_FIELD_NUMBER = 4;
@SuppressWarnings("serial")
private volatile java.lang.Object partitionName_ = "";
/**
* string partition_name = 4;
* @return The partitionName.
*/
@java.lang.Override
public java.lang.String getPartitionName() {
java.lang.Object ref = partitionName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
partitionName_ = s;
return s;
}
}
/**
* string partition_name = 4;
* @return The bytes for partitionName.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getPartitionNameBytes() {
java.lang.Object ref = partitionName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
partitionName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int FIELDS_DATA_FIELD_NUMBER = 5;
@SuppressWarnings("serial")
private java.util.List fieldsData_;
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
@java.lang.Override
public java.util.List getFieldsDataList() {
return fieldsData_;
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
@java.lang.Override
public java.util.List extends io.milvus.grpc.FieldDataOrBuilder>
getFieldsDataOrBuilderList() {
return fieldsData_;
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
@java.lang.Override
public int getFieldsDataCount() {
return fieldsData_.size();
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
@java.lang.Override
public io.milvus.grpc.FieldData getFieldsData(int index) {
return fieldsData_.get(index);
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
@java.lang.Override
public io.milvus.grpc.FieldDataOrBuilder getFieldsDataOrBuilder(
int index) {
return fieldsData_.get(index);
}
public static final int HASH_KEYS_FIELD_NUMBER = 6;
@SuppressWarnings("serial")
private com.google.protobuf.Internal.IntList hashKeys_ =
emptyIntList();
/**
* repeated uint32 hash_keys = 6;
* @return A list containing the hashKeys.
*/
@java.lang.Override
public java.util.List
getHashKeysList() {
return hashKeys_;
}
/**
* repeated uint32 hash_keys = 6;
* @return The count of hashKeys.
*/
public int getHashKeysCount() {
return hashKeys_.size();
}
/**
* repeated uint32 hash_keys = 6;
* @param index The index of the element to return.
* @return The hashKeys at the given index.
*/
public int getHashKeys(int index) {
return hashKeys_.getInt(index);
}
private int hashKeysMemoizedSerializedSize = -1;
public static final int NUM_ROWS_FIELD_NUMBER = 7;
private int numRows_ = 0;
/**
* uint32 num_rows = 7;
* @return The numRows.
*/
@java.lang.Override
public int getNumRows() {
return numRows_;
}
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, getBase());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dbName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, dbName_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(collectionName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, collectionName_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(partitionName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, partitionName_);
}
for (int i = 0; i < fieldsData_.size(); i++) {
output.writeMessage(5, fieldsData_.get(i));
}
if (getHashKeysList().size() > 0) {
output.writeUInt32NoTag(50);
output.writeUInt32NoTag(hashKeysMemoizedSerializedSize);
}
for (int i = 0; i < hashKeys_.size(); i++) {
output.writeUInt32NoTag(hashKeys_.getInt(i));
}
if (numRows_ != 0) {
output.writeUInt32(7, numRows_);
}
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, getBase());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dbName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, dbName_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(collectionName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, collectionName_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(partitionName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, partitionName_);
}
for (int i = 0; i < fieldsData_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(5, fieldsData_.get(i));
}
{
int dataSize = 0;
for (int i = 0; i < hashKeys_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeUInt32SizeNoTag(hashKeys_.getInt(i));
}
size += dataSize;
if (!getHashKeysList().isEmpty()) {
size += 1;
size += com.google.protobuf.CodedOutputStream
.computeInt32SizeNoTag(dataSize);
}
hashKeysMemoizedSerializedSize = dataSize;
}
if (numRows_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(7, numRows_);
}
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.UpsertRequest)) {
return super.equals(obj);
}
io.milvus.grpc.UpsertRequest other = (io.milvus.grpc.UpsertRequest) obj;
if (hasBase() != other.hasBase()) return false;
if (hasBase()) {
if (!getBase()
.equals(other.getBase())) return false;
}
if (!getDbName()
.equals(other.getDbName())) return false;
if (!getCollectionName()
.equals(other.getCollectionName())) return false;
if (!getPartitionName()
.equals(other.getPartitionName())) return false;
if (!getFieldsDataList()
.equals(other.getFieldsDataList())) return false;
if (!getHashKeysList()
.equals(other.getHashKeysList())) return false;
if (getNumRows()
!= other.getNumRows()) 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 (hasBase()) {
hash = (37 * hash) + BASE_FIELD_NUMBER;
hash = (53 * hash) + getBase().hashCode();
}
hash = (37 * hash) + DB_NAME_FIELD_NUMBER;
hash = (53 * hash) + getDbName().hashCode();
hash = (37 * hash) + COLLECTION_NAME_FIELD_NUMBER;
hash = (53 * hash) + getCollectionName().hashCode();
hash = (37 * hash) + PARTITION_NAME_FIELD_NUMBER;
hash = (53 * hash) + getPartitionName().hashCode();
if (getFieldsDataCount() > 0) {
hash = (37 * hash) + FIELDS_DATA_FIELD_NUMBER;
hash = (53 * hash) + getFieldsDataList().hashCode();
}
if (getHashKeysCount() > 0) {
hash = (37 * hash) + HASH_KEYS_FIELD_NUMBER;
hash = (53 * hash) + getHashKeysList().hashCode();
}
hash = (37 * hash) + NUM_ROWS_FIELD_NUMBER;
hash = (53 * hash) + getNumRows();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.milvus.grpc.UpsertRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.milvus.grpc.UpsertRequest 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.UpsertRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.milvus.grpc.UpsertRequest 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.UpsertRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.milvus.grpc.UpsertRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.milvus.grpc.UpsertRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.milvus.grpc.UpsertRequest 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.UpsertRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.milvus.grpc.UpsertRequest 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.UpsertRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.milvus.grpc.UpsertRequest 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.UpsertRequest 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.UpsertRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:milvus.proto.milvus.UpsertRequest)
io.milvus.grpc.UpsertRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_UpsertRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_UpsertRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.milvus.grpc.UpsertRequest.class, io.milvus.grpc.UpsertRequest.Builder.class);
}
// Construct using io.milvus.grpc.UpsertRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getBaseFieldBuilder();
getFieldsDataFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
base_ = null;
if (baseBuilder_ != null) {
baseBuilder_.dispose();
baseBuilder_ = null;
}
dbName_ = "";
collectionName_ = "";
partitionName_ = "";
if (fieldsDataBuilder_ == null) {
fieldsData_ = java.util.Collections.emptyList();
} else {
fieldsData_ = null;
fieldsDataBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000010);
hashKeys_ = emptyIntList();
numRows_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_UpsertRequest_descriptor;
}
@java.lang.Override
public io.milvus.grpc.UpsertRequest getDefaultInstanceForType() {
return io.milvus.grpc.UpsertRequest.getDefaultInstance();
}
@java.lang.Override
public io.milvus.grpc.UpsertRequest build() {
io.milvus.grpc.UpsertRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.milvus.grpc.UpsertRequest buildPartial() {
io.milvus.grpc.UpsertRequest result = new io.milvus.grpc.UpsertRequest(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartialRepeatedFields(io.milvus.grpc.UpsertRequest result) {
if (fieldsDataBuilder_ == null) {
if (((bitField0_ & 0x00000010) != 0)) {
fieldsData_ = java.util.Collections.unmodifiableList(fieldsData_);
bitField0_ = (bitField0_ & ~0x00000010);
}
result.fieldsData_ = fieldsData_;
} else {
result.fieldsData_ = fieldsDataBuilder_.build();
}
}
private void buildPartial0(io.milvus.grpc.UpsertRequest result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.base_ = baseBuilder_ == null
? base_
: baseBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.dbName_ = dbName_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.collectionName_ = collectionName_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.partitionName_ = partitionName_;
}
if (((from_bitField0_ & 0x00000020) != 0)) {
hashKeys_.makeImmutable();
result.hashKeys_ = hashKeys_;
}
if (((from_bitField0_ & 0x00000040) != 0)) {
result.numRows_ = numRows_;
}
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.UpsertRequest) {
return mergeFrom((io.milvus.grpc.UpsertRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.milvus.grpc.UpsertRequest other) {
if (other == io.milvus.grpc.UpsertRequest.getDefaultInstance()) return this;
if (other.hasBase()) {
mergeBase(other.getBase());
}
if (!other.getDbName().isEmpty()) {
dbName_ = other.dbName_;
bitField0_ |= 0x00000002;
onChanged();
}
if (!other.getCollectionName().isEmpty()) {
collectionName_ = other.collectionName_;
bitField0_ |= 0x00000004;
onChanged();
}
if (!other.getPartitionName().isEmpty()) {
partitionName_ = other.partitionName_;
bitField0_ |= 0x00000008;
onChanged();
}
if (fieldsDataBuilder_ == null) {
if (!other.fieldsData_.isEmpty()) {
if (fieldsData_.isEmpty()) {
fieldsData_ = other.fieldsData_;
bitField0_ = (bitField0_ & ~0x00000010);
} else {
ensureFieldsDataIsMutable();
fieldsData_.addAll(other.fieldsData_);
}
onChanged();
}
} else {
if (!other.fieldsData_.isEmpty()) {
if (fieldsDataBuilder_.isEmpty()) {
fieldsDataBuilder_.dispose();
fieldsDataBuilder_ = null;
fieldsData_ = other.fieldsData_;
bitField0_ = (bitField0_ & ~0x00000010);
fieldsDataBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getFieldsDataFieldBuilder() : null;
} else {
fieldsDataBuilder_.addAllMessages(other.fieldsData_);
}
}
}
if (!other.hashKeys_.isEmpty()) {
if (hashKeys_.isEmpty()) {
hashKeys_ = other.hashKeys_;
hashKeys_.makeImmutable();
bitField0_ |= 0x00000020;
} else {
ensureHashKeysIsMutable();
hashKeys_.addAll(other.hashKeys_);
}
onChanged();
}
if (other.getNumRows() != 0) {
setNumRows(other.getNumRows());
}
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(
getBaseFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
dbName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 26: {
collectionName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000004;
break;
} // case 26
case 34: {
partitionName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000008;
break;
} // case 34
case 42: {
io.milvus.grpc.FieldData m =
input.readMessage(
io.milvus.grpc.FieldData.parser(),
extensionRegistry);
if (fieldsDataBuilder_ == null) {
ensureFieldsDataIsMutable();
fieldsData_.add(m);
} else {
fieldsDataBuilder_.addMessage(m);
}
break;
} // case 42
case 48: {
int v = input.readUInt32();
ensureHashKeysIsMutable();
hashKeys_.addInt(v);
break;
} // case 48
case 50: {
int length = input.readRawVarint32();
int limit = input.pushLimit(length);
ensureHashKeysIsMutable();
while (input.getBytesUntilLimit() > 0) {
hashKeys_.addInt(input.readUInt32());
}
input.popLimit(limit);
break;
} // case 50
case 56: {
numRows_ = input.readUInt32();
bitField0_ |= 0x00000040;
break;
} // case 56
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.MsgBase base_;
private com.google.protobuf.SingleFieldBuilderV3<
io.milvus.grpc.MsgBase, io.milvus.grpc.MsgBase.Builder, io.milvus.grpc.MsgBaseOrBuilder> baseBuilder_;
/**
* .milvus.proto.common.MsgBase base = 1;
* @return Whether the base field is set.
*/
public boolean hasBase() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .milvus.proto.common.MsgBase base = 1;
* @return The base.
*/
public io.milvus.grpc.MsgBase getBase() {
if (baseBuilder_ == null) {
return base_ == null ? io.milvus.grpc.MsgBase.getDefaultInstance() : base_;
} else {
return baseBuilder_.getMessage();
}
}
/**
* .milvus.proto.common.MsgBase base = 1;
*/
public Builder setBase(io.milvus.grpc.MsgBase value) {
if (baseBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
base_ = value;
} else {
baseBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* .milvus.proto.common.MsgBase base = 1;
*/
public Builder setBase(
io.milvus.grpc.MsgBase.Builder builderForValue) {
if (baseBuilder_ == null) {
base_ = builderForValue.build();
} else {
baseBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
* .milvus.proto.common.MsgBase base = 1;
*/
public Builder mergeBase(io.milvus.grpc.MsgBase value) {
if (baseBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
base_ != null &&
base_ != io.milvus.grpc.MsgBase.getDefaultInstance()) {
getBaseBuilder().mergeFrom(value);
} else {
base_ = value;
}
} else {
baseBuilder_.mergeFrom(value);
}
if (base_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
* .milvus.proto.common.MsgBase base = 1;
*/
public Builder clearBase() {
bitField0_ = (bitField0_ & ~0x00000001);
base_ = null;
if (baseBuilder_ != null) {
baseBuilder_.dispose();
baseBuilder_ = null;
}
onChanged();
return this;
}
/**
* .milvus.proto.common.MsgBase base = 1;
*/
public io.milvus.grpc.MsgBase.Builder getBaseBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getBaseFieldBuilder().getBuilder();
}
/**
* .milvus.proto.common.MsgBase base = 1;
*/
public io.milvus.grpc.MsgBaseOrBuilder getBaseOrBuilder() {
if (baseBuilder_ != null) {
return baseBuilder_.getMessageOrBuilder();
} else {
return base_ == null ?
io.milvus.grpc.MsgBase.getDefaultInstance() : base_;
}
}
/**
* .milvus.proto.common.MsgBase base = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.milvus.grpc.MsgBase, io.milvus.grpc.MsgBase.Builder, io.milvus.grpc.MsgBaseOrBuilder>
getBaseFieldBuilder() {
if (baseBuilder_ == null) {
baseBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.milvus.grpc.MsgBase, io.milvus.grpc.MsgBase.Builder, io.milvus.grpc.MsgBaseOrBuilder>(
getBase(),
getParentForChildren(),
isClean());
base_ = null;
}
return baseBuilder_;
}
private java.lang.Object dbName_ = "";
/**
* string db_name = 2;
* @return The dbName.
*/
public java.lang.String getDbName() {
java.lang.Object ref = dbName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
dbName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string db_name = 2;
* @return The bytes for dbName.
*/
public com.google.protobuf.ByteString
getDbNameBytes() {
java.lang.Object ref = dbName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
dbName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string db_name = 2;
* @param value The dbName to set.
* @return This builder for chaining.
*/
public Builder setDbName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
dbName_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* string db_name = 2;
* @return This builder for chaining.
*/
public Builder clearDbName() {
dbName_ = getDefaultInstance().getDbName();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
* string db_name = 2;
* @param value The bytes for dbName to set.
* @return This builder for chaining.
*/
public Builder setDbNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
dbName_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private java.lang.Object collectionName_ = "";
/**
* string collection_name = 3;
* @return The collectionName.
*/
public java.lang.String getCollectionName() {
java.lang.Object ref = collectionName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
collectionName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string collection_name = 3;
* @return The bytes for collectionName.
*/
public com.google.protobuf.ByteString
getCollectionNameBytes() {
java.lang.Object ref = collectionName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
collectionName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string collection_name = 3;
* @param value The collectionName to set.
* @return This builder for chaining.
*/
public Builder setCollectionName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
collectionName_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
* string collection_name = 3;
* @return This builder for chaining.
*/
public Builder clearCollectionName() {
collectionName_ = getDefaultInstance().getCollectionName();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
return this;
}
/**
* string collection_name = 3;
* @param value The bytes for collectionName to set.
* @return This builder for chaining.
*/
public Builder setCollectionNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
collectionName_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
private java.lang.Object partitionName_ = "";
/**
* string partition_name = 4;
* @return The partitionName.
*/
public java.lang.String getPartitionName() {
java.lang.Object ref = partitionName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
partitionName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string partition_name = 4;
* @return The bytes for partitionName.
*/
public com.google.protobuf.ByteString
getPartitionNameBytes() {
java.lang.Object ref = partitionName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
partitionName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string partition_name = 4;
* @param value The partitionName to set.
* @return This builder for chaining.
*/
public Builder setPartitionName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
partitionName_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
* string partition_name = 4;
* @return This builder for chaining.
*/
public Builder clearPartitionName() {
partitionName_ = getDefaultInstance().getPartitionName();
bitField0_ = (bitField0_ & ~0x00000008);
onChanged();
return this;
}
/**
* string partition_name = 4;
* @param value The bytes for partitionName to set.
* @return This builder for chaining.
*/
public Builder setPartitionNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
partitionName_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
private java.util.List fieldsData_ =
java.util.Collections.emptyList();
private void ensureFieldsDataIsMutable() {
if (!((bitField0_ & 0x00000010) != 0)) {
fieldsData_ = new java.util.ArrayList(fieldsData_);
bitField0_ |= 0x00000010;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.milvus.grpc.FieldData, io.milvus.grpc.FieldData.Builder, io.milvus.grpc.FieldDataOrBuilder> fieldsDataBuilder_;
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public java.util.List getFieldsDataList() {
if (fieldsDataBuilder_ == null) {
return java.util.Collections.unmodifiableList(fieldsData_);
} else {
return fieldsDataBuilder_.getMessageList();
}
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public int getFieldsDataCount() {
if (fieldsDataBuilder_ == null) {
return fieldsData_.size();
} else {
return fieldsDataBuilder_.getCount();
}
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public io.milvus.grpc.FieldData getFieldsData(int index) {
if (fieldsDataBuilder_ == null) {
return fieldsData_.get(index);
} else {
return fieldsDataBuilder_.getMessage(index);
}
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public Builder setFieldsData(
int index, io.milvus.grpc.FieldData value) {
if (fieldsDataBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFieldsDataIsMutable();
fieldsData_.set(index, value);
onChanged();
} else {
fieldsDataBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public Builder setFieldsData(
int index, io.milvus.grpc.FieldData.Builder builderForValue) {
if (fieldsDataBuilder_ == null) {
ensureFieldsDataIsMutable();
fieldsData_.set(index, builderForValue.build());
onChanged();
} else {
fieldsDataBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public Builder addFieldsData(io.milvus.grpc.FieldData value) {
if (fieldsDataBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFieldsDataIsMutable();
fieldsData_.add(value);
onChanged();
} else {
fieldsDataBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public Builder addFieldsData(
int index, io.milvus.grpc.FieldData value) {
if (fieldsDataBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFieldsDataIsMutable();
fieldsData_.add(index, value);
onChanged();
} else {
fieldsDataBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public Builder addFieldsData(
io.milvus.grpc.FieldData.Builder builderForValue) {
if (fieldsDataBuilder_ == null) {
ensureFieldsDataIsMutable();
fieldsData_.add(builderForValue.build());
onChanged();
} else {
fieldsDataBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public Builder addFieldsData(
int index, io.milvus.grpc.FieldData.Builder builderForValue) {
if (fieldsDataBuilder_ == null) {
ensureFieldsDataIsMutable();
fieldsData_.add(index, builderForValue.build());
onChanged();
} else {
fieldsDataBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public Builder addAllFieldsData(
java.lang.Iterable extends io.milvus.grpc.FieldData> values) {
if (fieldsDataBuilder_ == null) {
ensureFieldsDataIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, fieldsData_);
onChanged();
} else {
fieldsDataBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public Builder clearFieldsData() {
if (fieldsDataBuilder_ == null) {
fieldsData_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000010);
onChanged();
} else {
fieldsDataBuilder_.clear();
}
return this;
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public Builder removeFieldsData(int index) {
if (fieldsDataBuilder_ == null) {
ensureFieldsDataIsMutable();
fieldsData_.remove(index);
onChanged();
} else {
fieldsDataBuilder_.remove(index);
}
return this;
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public io.milvus.grpc.FieldData.Builder getFieldsDataBuilder(
int index) {
return getFieldsDataFieldBuilder().getBuilder(index);
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public io.milvus.grpc.FieldDataOrBuilder getFieldsDataOrBuilder(
int index) {
if (fieldsDataBuilder_ == null) {
return fieldsData_.get(index); } else {
return fieldsDataBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public java.util.List extends io.milvus.grpc.FieldDataOrBuilder>
getFieldsDataOrBuilderList() {
if (fieldsDataBuilder_ != null) {
return fieldsDataBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(fieldsData_);
}
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public io.milvus.grpc.FieldData.Builder addFieldsDataBuilder() {
return getFieldsDataFieldBuilder().addBuilder(
io.milvus.grpc.FieldData.getDefaultInstance());
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public io.milvus.grpc.FieldData.Builder addFieldsDataBuilder(
int index) {
return getFieldsDataFieldBuilder().addBuilder(
index, io.milvus.grpc.FieldData.getDefaultInstance());
}
/**
* repeated .milvus.proto.schema.FieldData fields_data = 5;
*/
public java.util.List
getFieldsDataBuilderList() {
return getFieldsDataFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.milvus.grpc.FieldData, io.milvus.grpc.FieldData.Builder, io.milvus.grpc.FieldDataOrBuilder>
getFieldsDataFieldBuilder() {
if (fieldsDataBuilder_ == null) {
fieldsDataBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.milvus.grpc.FieldData, io.milvus.grpc.FieldData.Builder, io.milvus.grpc.FieldDataOrBuilder>(
fieldsData_,
((bitField0_ & 0x00000010) != 0),
getParentForChildren(),
isClean());
fieldsData_ = null;
}
return fieldsDataBuilder_;
}
private com.google.protobuf.Internal.IntList hashKeys_ = emptyIntList();
private void ensureHashKeysIsMutable() {
if (!hashKeys_.isModifiable()) {
hashKeys_ = makeMutableCopy(hashKeys_);
}
bitField0_ |= 0x00000020;
}
/**
* repeated uint32 hash_keys = 6;
* @return A list containing the hashKeys.
*/
public java.util.List
getHashKeysList() {
hashKeys_.makeImmutable();
return hashKeys_;
}
/**
* repeated uint32 hash_keys = 6;
* @return The count of hashKeys.
*/
public int getHashKeysCount() {
return hashKeys_.size();
}
/**
* repeated uint32 hash_keys = 6;
* @param index The index of the element to return.
* @return The hashKeys at the given index.
*/
public int getHashKeys(int index) {
return hashKeys_.getInt(index);
}
/**
* repeated uint32 hash_keys = 6;
* @param index The index to set the value at.
* @param value The hashKeys to set.
* @return This builder for chaining.
*/
public Builder setHashKeys(
int index, int value) {
ensureHashKeysIsMutable();
hashKeys_.setInt(index, value);
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
* repeated uint32 hash_keys = 6;
* @param value The hashKeys to add.
* @return This builder for chaining.
*/
public Builder addHashKeys(int value) {
ensureHashKeysIsMutable();
hashKeys_.addInt(value);
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
* repeated uint32 hash_keys = 6;
* @param values The hashKeys to add.
* @return This builder for chaining.
*/
public Builder addAllHashKeys(
java.lang.Iterable extends java.lang.Integer> values) {
ensureHashKeysIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, hashKeys_);
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
* repeated uint32 hash_keys = 6;
* @return This builder for chaining.
*/
public Builder clearHashKeys() {
hashKeys_ = emptyIntList();
bitField0_ = (bitField0_ & ~0x00000020);
onChanged();
return this;
}
private int numRows_ ;
/**
* uint32 num_rows = 7;
* @return The numRows.
*/
@java.lang.Override
public int getNumRows() {
return numRows_;
}
/**
* uint32 num_rows = 7;
* @param value The numRows to set.
* @return This builder for chaining.
*/
public Builder setNumRows(int value) {
numRows_ = value;
bitField0_ |= 0x00000040;
onChanged();
return this;
}
/**
* uint32 num_rows = 7;
* @return This builder for chaining.
*/
public Builder clearNumRows() {
bitField0_ = (bitField0_ & ~0x00000040);
numRows_ = 0;
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.UpsertRequest)
}
// @@protoc_insertion_point(class_scope:milvus.proto.milvus.UpsertRequest)
private static final io.milvus.grpc.UpsertRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.milvus.grpc.UpsertRequest();
}
public static io.milvus.grpc.UpsertRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public UpsertRequest 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.UpsertRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}