io.milvus.grpc.SearchRequest 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 search engine.
update grpc to 1.42.1
update protobuf to 3.19.1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: milvus.proto
package io.milvus.grpc;
/**
* Protobuf type {@code milvus.proto.milvus.SearchRequest}
*/
public final class SearchRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:milvus.proto.milvus.SearchRequest)
SearchRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use SearchRequest.newBuilder() to construct.
private SearchRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private SearchRequest() {
dbName_ = "";
collectionName_ = "";
partitionNames_ = com.google.protobuf.LazyStringArrayList.EMPTY;
dsl_ = "";
placeholderGroup_ = com.google.protobuf.ByteString.EMPTY;
dslType_ = 0;
outputFields_ = com.google.protobuf.LazyStringArrayList.EMPTY;
searchParams_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new SearchRequest();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private SearchRequest(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
io.milvus.grpc.MsgBase.Builder subBuilder = null;
if (base_ != null) {
subBuilder = base_.toBuilder();
}
base_ = input.readMessage(io.milvus.grpc.MsgBase.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(base_);
base_ = subBuilder.buildPartial();
}
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
dbName_ = s;
break;
}
case 26: {
java.lang.String s = input.readStringRequireUtf8();
collectionName_ = s;
break;
}
case 34: {
java.lang.String s = input.readStringRequireUtf8();
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
partitionNames_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000001;
}
partitionNames_.add(s);
break;
}
case 42: {
java.lang.String s = input.readStringRequireUtf8();
dsl_ = s;
break;
}
case 50: {
placeholderGroup_ = input.readBytes();
break;
}
case 56: {
int rawValue = input.readEnum();
dslType_ = rawValue;
break;
}
case 66: {
java.lang.String s = input.readStringRequireUtf8();
if (!((mutable_bitField0_ & 0x00000002) != 0)) {
outputFields_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000002;
}
outputFields_.add(s);
break;
}
case 74: {
if (!((mutable_bitField0_ & 0x00000004) != 0)) {
searchParams_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000004;
}
searchParams_.add(
input.readMessage(io.milvus.grpc.KeyValuePair.parser(), extensionRegistry));
break;
}
case 80: {
travelTimestamp_ = input.readUInt64();
break;
}
case 88: {
guaranteeTimestamp_ = input.readUInt64();
break;
}
case 96: {
nq_ = input.readInt64();
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)) {
partitionNames_ = partitionNames_.getUnmodifiableView();
}
if (((mutable_bitField0_ & 0x00000002) != 0)) {
outputFields_ = outputFields_.getUnmodifiableView();
}
if (((mutable_bitField0_ & 0x00000004) != 0)) {
searchParams_ = java.util.Collections.unmodifiableList(searchParams_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_SearchRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_SearchRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.milvus.grpc.SearchRequest.class, io.milvus.grpc.SearchRequest.Builder.class);
}
public static final int BASE_FIELD_NUMBER = 1;
private io.milvus.grpc.MsgBase base_;
/**
*
* must
*
*
* .milvus.proto.common.MsgBase base = 1;
* @return Whether the base field is set.
*/
@java.lang.Override
public boolean hasBase() {
return base_ != null;
}
/**
*
* must
*
*
* .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_;
}
/**
*
* must
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
@java.lang.Override
public io.milvus.grpc.MsgBaseOrBuilder getBaseOrBuilder() {
return getBase();
}
public static final int DB_NAME_FIELD_NUMBER = 2;
private volatile java.lang.Object dbName_;
/**
* string db_name = 2;
* @return The dbName.
*/
@java.lang.Override
public java.lang.String getDbName() {
java.lang.Object ref = dbName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
dbName_ = s;
return s;
}
}
/**
* string db_name = 2;
* @return The bytes for dbName.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getDbNameBytes() {
java.lang.Object ref = dbName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
dbName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int COLLECTION_NAME_FIELD_NUMBER = 3;
private volatile java.lang.Object collectionName_;
/**
*
* must
*
*
* 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;
}
}
/**
*
* must
*
*
* 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_NAMES_FIELD_NUMBER = 4;
private com.google.protobuf.LazyStringList partitionNames_;
/**
*
* must
*
*
* repeated string partition_names = 4;
* @return A list containing the partitionNames.
*/
public com.google.protobuf.ProtocolStringList
getPartitionNamesList() {
return partitionNames_;
}
/**
*
* must
*
*
* repeated string partition_names = 4;
* @return The count of partitionNames.
*/
public int getPartitionNamesCount() {
return partitionNames_.size();
}
/**
*
* must
*
*
* repeated string partition_names = 4;
* @param index The index of the element to return.
* @return The partitionNames at the given index.
*/
public java.lang.String getPartitionNames(int index) {
return partitionNames_.get(index);
}
/**
*
* must
*
*
* repeated string partition_names = 4;
* @param index The index of the value to return.
* @return The bytes of the partitionNames at the given index.
*/
public com.google.protobuf.ByteString
getPartitionNamesBytes(int index) {
return partitionNames_.getByteString(index);
}
public static final int DSL_FIELD_NUMBER = 5;
private volatile java.lang.Object dsl_;
/**
*
* must
*
*
* string dsl = 5;
* @return The dsl.
*/
@java.lang.Override
public java.lang.String getDsl() {
java.lang.Object ref = dsl_;
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();
dsl_ = s;
return s;
}
}
/**
*
* must
*
*
* string dsl = 5;
* @return The bytes for dsl.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getDslBytes() {
java.lang.Object ref = dsl_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
dsl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PLACEHOLDER_GROUP_FIELD_NUMBER = 6;
private com.google.protobuf.ByteString placeholderGroup_;
/**
*
* serialized `PlaceholderGroup`
*
*
* bytes placeholder_group = 6;
* @return The placeholderGroup.
*/
@java.lang.Override
public com.google.protobuf.ByteString getPlaceholderGroup() {
return placeholderGroup_;
}
public static final int DSL_TYPE_FIELD_NUMBER = 7;
private int dslType_;
/**
*
* must
*
*
* .milvus.proto.common.DslType dsl_type = 7;
* @return The enum numeric value on the wire for dslType.
*/
@java.lang.Override public int getDslTypeValue() {
return dslType_;
}
/**
*
* must
*
*
* .milvus.proto.common.DslType dsl_type = 7;
* @return The dslType.
*/
@java.lang.Override public io.milvus.grpc.DslType getDslType() {
@SuppressWarnings("deprecation")
io.milvus.grpc.DslType result = io.milvus.grpc.DslType.valueOf(dslType_);
return result == null ? io.milvus.grpc.DslType.UNRECOGNIZED : result;
}
public static final int OUTPUT_FIELDS_FIELD_NUMBER = 8;
private com.google.protobuf.LazyStringList outputFields_;
/**
* repeated string output_fields = 8;
* @return A list containing the outputFields.
*/
public com.google.protobuf.ProtocolStringList
getOutputFieldsList() {
return outputFields_;
}
/**
* repeated string output_fields = 8;
* @return The count of outputFields.
*/
public int getOutputFieldsCount() {
return outputFields_.size();
}
/**
* repeated string output_fields = 8;
* @param index The index of the element to return.
* @return The outputFields at the given index.
*/
public java.lang.String getOutputFields(int index) {
return outputFields_.get(index);
}
/**
* repeated string output_fields = 8;
* @param index The index of the value to return.
* @return The bytes of the outputFields at the given index.
*/
public com.google.protobuf.ByteString
getOutputFieldsBytes(int index) {
return outputFields_.getByteString(index);
}
public static final int SEARCH_PARAMS_FIELD_NUMBER = 9;
private java.util.List searchParams_;
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
@java.lang.Override
public java.util.List getSearchParamsList() {
return searchParams_;
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
@java.lang.Override
public java.util.List extends io.milvus.grpc.KeyValuePairOrBuilder>
getSearchParamsOrBuilderList() {
return searchParams_;
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
@java.lang.Override
public int getSearchParamsCount() {
return searchParams_.size();
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
@java.lang.Override
public io.milvus.grpc.KeyValuePair getSearchParams(int index) {
return searchParams_.get(index);
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
@java.lang.Override
public io.milvus.grpc.KeyValuePairOrBuilder getSearchParamsOrBuilder(
int index) {
return searchParams_.get(index);
}
public static final int TRAVEL_TIMESTAMP_FIELD_NUMBER = 10;
private long travelTimestamp_;
/**
* uint64 travel_timestamp = 10;
* @return The travelTimestamp.
*/
@java.lang.Override
public long getTravelTimestamp() {
return travelTimestamp_;
}
public static final int GUARANTEE_TIMESTAMP_FIELD_NUMBER = 11;
private long guaranteeTimestamp_;
/**
*
* guarantee_timestamp
*
*
* uint64 guarantee_timestamp = 11;
* @return The guaranteeTimestamp.
*/
@java.lang.Override
public long getGuaranteeTimestamp() {
return guaranteeTimestamp_;
}
public static final int NQ_FIELD_NUMBER = 12;
private long nq_;
/**
* int64 nq = 12;
* @return The nq.
*/
@java.lang.Override
public long getNq() {
return nq_;
}
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 {
if (base_ != null) {
output.writeMessage(1, getBase());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dbName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, dbName_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(collectionName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, collectionName_);
}
for (int i = 0; i < partitionNames_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 4, partitionNames_.getRaw(i));
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dsl_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, dsl_);
}
if (!placeholderGroup_.isEmpty()) {
output.writeBytes(6, placeholderGroup_);
}
if (dslType_ != io.milvus.grpc.DslType.Dsl.getNumber()) {
output.writeEnum(7, dslType_);
}
for (int i = 0; i < outputFields_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 8, outputFields_.getRaw(i));
}
for (int i = 0; i < searchParams_.size(); i++) {
output.writeMessage(9, searchParams_.get(i));
}
if (travelTimestamp_ != 0L) {
output.writeUInt64(10, travelTimestamp_);
}
if (guaranteeTimestamp_ != 0L) {
output.writeUInt64(11, guaranteeTimestamp_);
}
if (nq_ != 0L) {
output.writeInt64(12, nq_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (base_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getBase());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dbName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, dbName_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(collectionName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, collectionName_);
}
{
int dataSize = 0;
for (int i = 0; i < partitionNames_.size(); i++) {
dataSize += computeStringSizeNoTag(partitionNames_.getRaw(i));
}
size += dataSize;
size += 1 * getPartitionNamesList().size();
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dsl_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, dsl_);
}
if (!placeholderGroup_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(6, placeholderGroup_);
}
if (dslType_ != io.milvus.grpc.DslType.Dsl.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(7, dslType_);
}
{
int dataSize = 0;
for (int i = 0; i < outputFields_.size(); i++) {
dataSize += computeStringSizeNoTag(outputFields_.getRaw(i));
}
size += dataSize;
size += 1 * getOutputFieldsList().size();
}
for (int i = 0; i < searchParams_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(9, searchParams_.get(i));
}
if (travelTimestamp_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeUInt64Size(10, travelTimestamp_);
}
if (guaranteeTimestamp_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeUInt64Size(11, guaranteeTimestamp_);
}
if (nq_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(12, nq_);
}
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.SearchRequest)) {
return super.equals(obj);
}
io.milvus.grpc.SearchRequest other = (io.milvus.grpc.SearchRequest) 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 (!getPartitionNamesList()
.equals(other.getPartitionNamesList())) return false;
if (!getDsl()
.equals(other.getDsl())) return false;
if (!getPlaceholderGroup()
.equals(other.getPlaceholderGroup())) return false;
if (dslType_ != other.dslType_) return false;
if (!getOutputFieldsList()
.equals(other.getOutputFieldsList())) return false;
if (!getSearchParamsList()
.equals(other.getSearchParamsList())) return false;
if (getTravelTimestamp()
!= other.getTravelTimestamp()) return false;
if (getGuaranteeTimestamp()
!= other.getGuaranteeTimestamp()) return false;
if (getNq()
!= other.getNq()) return false;
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasBase()) {
hash = (37 * hash) + BASE_FIELD_NUMBER;
hash = (53 * hash) + getBase().hashCode();
}
hash = (37 * hash) + DB_NAME_FIELD_NUMBER;
hash = (53 * hash) + getDbName().hashCode();
hash = (37 * hash) + COLLECTION_NAME_FIELD_NUMBER;
hash = (53 * hash) + getCollectionName().hashCode();
if (getPartitionNamesCount() > 0) {
hash = (37 * hash) + PARTITION_NAMES_FIELD_NUMBER;
hash = (53 * hash) + getPartitionNamesList().hashCode();
}
hash = (37 * hash) + DSL_FIELD_NUMBER;
hash = (53 * hash) + getDsl().hashCode();
hash = (37 * hash) + PLACEHOLDER_GROUP_FIELD_NUMBER;
hash = (53 * hash) + getPlaceholderGroup().hashCode();
hash = (37 * hash) + DSL_TYPE_FIELD_NUMBER;
hash = (53 * hash) + dslType_;
if (getOutputFieldsCount() > 0) {
hash = (37 * hash) + OUTPUT_FIELDS_FIELD_NUMBER;
hash = (53 * hash) + getOutputFieldsList().hashCode();
}
if (getSearchParamsCount() > 0) {
hash = (37 * hash) + SEARCH_PARAMS_FIELD_NUMBER;
hash = (53 * hash) + getSearchParamsList().hashCode();
}
hash = (37 * hash) + TRAVEL_TIMESTAMP_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getTravelTimestamp());
hash = (37 * hash) + GUARANTEE_TIMESTAMP_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getGuaranteeTimestamp());
hash = (37 * hash) + NQ_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getNq());
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.milvus.grpc.SearchRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.milvus.grpc.SearchRequest 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.SearchRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.milvus.grpc.SearchRequest 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.SearchRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.milvus.grpc.SearchRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.milvus.grpc.SearchRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.milvus.grpc.SearchRequest 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.SearchRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.milvus.grpc.SearchRequest 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.SearchRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.milvus.grpc.SearchRequest 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.SearchRequest 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.SearchRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:milvus.proto.milvus.SearchRequest)
io.milvus.grpc.SearchRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_SearchRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_SearchRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.milvus.grpc.SearchRequest.class, io.milvus.grpc.SearchRequest.Builder.class);
}
// Construct using io.milvus.grpc.SearchRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getSearchParamsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (baseBuilder_ == null) {
base_ = null;
} else {
base_ = null;
baseBuilder_ = null;
}
dbName_ = "";
collectionName_ = "";
partitionNames_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000001);
dsl_ = "";
placeholderGroup_ = com.google.protobuf.ByteString.EMPTY;
dslType_ = 0;
outputFields_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000002);
if (searchParamsBuilder_ == null) {
searchParams_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);
} else {
searchParamsBuilder_.clear();
}
travelTimestamp_ = 0L;
guaranteeTimestamp_ = 0L;
nq_ = 0L;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_SearchRequest_descriptor;
}
@java.lang.Override
public io.milvus.grpc.SearchRequest getDefaultInstanceForType() {
return io.milvus.grpc.SearchRequest.getDefaultInstance();
}
@java.lang.Override
public io.milvus.grpc.SearchRequest build() {
io.milvus.grpc.SearchRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.milvus.grpc.SearchRequest buildPartial() {
io.milvus.grpc.SearchRequest result = new io.milvus.grpc.SearchRequest(this);
int from_bitField0_ = bitField0_;
if (baseBuilder_ == null) {
result.base_ = base_;
} else {
result.base_ = baseBuilder_.build();
}
result.dbName_ = dbName_;
result.collectionName_ = collectionName_;
if (((bitField0_ & 0x00000001) != 0)) {
partitionNames_ = partitionNames_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000001);
}
result.partitionNames_ = partitionNames_;
result.dsl_ = dsl_;
result.placeholderGroup_ = placeholderGroup_;
result.dslType_ = dslType_;
if (((bitField0_ & 0x00000002) != 0)) {
outputFields_ = outputFields_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000002);
}
result.outputFields_ = outputFields_;
if (searchParamsBuilder_ == null) {
if (((bitField0_ & 0x00000004) != 0)) {
searchParams_ = java.util.Collections.unmodifiableList(searchParams_);
bitField0_ = (bitField0_ & ~0x00000004);
}
result.searchParams_ = searchParams_;
} else {
result.searchParams_ = searchParamsBuilder_.build();
}
result.travelTimestamp_ = travelTimestamp_;
result.guaranteeTimestamp_ = guaranteeTimestamp_;
result.nq_ = nq_;
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.SearchRequest) {
return mergeFrom((io.milvus.grpc.SearchRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.milvus.grpc.SearchRequest other) {
if (other == io.milvus.grpc.SearchRequest.getDefaultInstance()) return this;
if (other.hasBase()) {
mergeBase(other.getBase());
}
if (!other.getDbName().isEmpty()) {
dbName_ = other.dbName_;
onChanged();
}
if (!other.getCollectionName().isEmpty()) {
collectionName_ = other.collectionName_;
onChanged();
}
if (!other.partitionNames_.isEmpty()) {
if (partitionNames_.isEmpty()) {
partitionNames_ = other.partitionNames_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensurePartitionNamesIsMutable();
partitionNames_.addAll(other.partitionNames_);
}
onChanged();
}
if (!other.getDsl().isEmpty()) {
dsl_ = other.dsl_;
onChanged();
}
if (other.getPlaceholderGroup() != com.google.protobuf.ByteString.EMPTY) {
setPlaceholderGroup(other.getPlaceholderGroup());
}
if (other.dslType_ != 0) {
setDslTypeValue(other.getDslTypeValue());
}
if (!other.outputFields_.isEmpty()) {
if (outputFields_.isEmpty()) {
outputFields_ = other.outputFields_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureOutputFieldsIsMutable();
outputFields_.addAll(other.outputFields_);
}
onChanged();
}
if (searchParamsBuilder_ == null) {
if (!other.searchParams_.isEmpty()) {
if (searchParams_.isEmpty()) {
searchParams_ = other.searchParams_;
bitField0_ = (bitField0_ & ~0x00000004);
} else {
ensureSearchParamsIsMutable();
searchParams_.addAll(other.searchParams_);
}
onChanged();
}
} else {
if (!other.searchParams_.isEmpty()) {
if (searchParamsBuilder_.isEmpty()) {
searchParamsBuilder_.dispose();
searchParamsBuilder_ = null;
searchParams_ = other.searchParams_;
bitField0_ = (bitField0_ & ~0x00000004);
searchParamsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getSearchParamsFieldBuilder() : null;
} else {
searchParamsBuilder_.addAllMessages(other.searchParams_);
}
}
}
if (other.getTravelTimestamp() != 0L) {
setTravelTimestamp(other.getTravelTimestamp());
}
if (other.getGuaranteeTimestamp() != 0L) {
setGuaranteeTimestamp(other.getGuaranteeTimestamp());
}
if (other.getNq() != 0L) {
setNq(other.getNq());
}
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.SearchRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.milvus.grpc.SearchRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private io.milvus.grpc.MsgBase base_;
private com.google.protobuf.SingleFieldBuilderV3<
io.milvus.grpc.MsgBase, io.milvus.grpc.MsgBase.Builder, io.milvus.grpc.MsgBaseOrBuilder> baseBuilder_;
/**
*
* must
*
*
* .milvus.proto.common.MsgBase base = 1;
* @return Whether the base field is set.
*/
public boolean hasBase() {
return baseBuilder_ != null || base_ != null;
}
/**
*
* must
*
*
* .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();
}
}
/**
*
* must
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
public Builder setBase(io.milvus.grpc.MsgBase value) {
if (baseBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
base_ = value;
onChanged();
} else {
baseBuilder_.setMessage(value);
}
return this;
}
/**
*
* must
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
public Builder setBase(
io.milvus.grpc.MsgBase.Builder builderForValue) {
if (baseBuilder_ == null) {
base_ = builderForValue.build();
onChanged();
} else {
baseBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* must
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
public Builder mergeBase(io.milvus.grpc.MsgBase value) {
if (baseBuilder_ == null) {
if (base_ != null) {
base_ =
io.milvus.grpc.MsgBase.newBuilder(base_).mergeFrom(value).buildPartial();
} else {
base_ = value;
}
onChanged();
} else {
baseBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* must
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
public Builder clearBase() {
if (baseBuilder_ == null) {
base_ = null;
onChanged();
} else {
base_ = null;
baseBuilder_ = null;
}
return this;
}
/**
*
* must
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
public io.milvus.grpc.MsgBase.Builder getBaseBuilder() {
onChanged();
return getBaseFieldBuilder().getBuilder();
}
/**
*
* must
*
*
* .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_;
}
}
/**
*
* must
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.milvus.grpc.MsgBase, io.milvus.grpc.MsgBase.Builder, io.milvus.grpc.MsgBaseOrBuilder>
getBaseFieldBuilder() {
if (baseBuilder_ == null) {
baseBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.milvus.grpc.MsgBase, io.milvus.grpc.MsgBase.Builder, io.milvus.grpc.MsgBaseOrBuilder>(
getBase(),
getParentForChildren(),
isClean());
base_ = null;
}
return baseBuilder_;
}
private java.lang.Object dbName_ = "";
/**
* string db_name = 2;
* @return The dbName.
*/
public java.lang.String getDbName() {
java.lang.Object ref = dbName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
dbName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string db_name = 2;
* @return The bytes for dbName.
*/
public com.google.protobuf.ByteString
getDbNameBytes() {
java.lang.Object ref = dbName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
dbName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string db_name = 2;
* @param value The dbName to set.
* @return This builder for chaining.
*/
public Builder setDbName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
dbName_ = value;
onChanged();
return this;
}
/**
* string db_name = 2;
* @return This builder for chaining.
*/
public Builder clearDbName() {
dbName_ = getDefaultInstance().getDbName();
onChanged();
return this;
}
/**
* string db_name = 2;
* @param value The bytes for dbName to set.
* @return This builder for chaining.
*/
public Builder setDbNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
dbName_ = value;
onChanged();
return this;
}
private java.lang.Object collectionName_ = "";
/**
*
* must
*
*
* 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;
}
}
/**
*
* must
*
*
* 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;
}
}
/**
*
* must
*
*
* string collection_name = 3;
* @param value The collectionName to set.
* @return This builder for chaining.
*/
public Builder setCollectionName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
collectionName_ = value;
onChanged();
return this;
}
/**
*
* must
*
*
* string collection_name = 3;
* @return This builder for chaining.
*/
public Builder clearCollectionName() {
collectionName_ = getDefaultInstance().getCollectionName();
onChanged();
return this;
}
/**
*
* must
*
*
* string collection_name = 3;
* @param value The bytes for collectionName to set.
* @return This builder for chaining.
*/
public Builder setCollectionNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
collectionName_ = value;
onChanged();
return this;
}
private com.google.protobuf.LazyStringList partitionNames_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensurePartitionNamesIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
partitionNames_ = new com.google.protobuf.LazyStringArrayList(partitionNames_);
bitField0_ |= 0x00000001;
}
}
/**
*
* must
*
*
* repeated string partition_names = 4;
* @return A list containing the partitionNames.
*/
public com.google.protobuf.ProtocolStringList
getPartitionNamesList() {
return partitionNames_.getUnmodifiableView();
}
/**
*
* must
*
*
* repeated string partition_names = 4;
* @return The count of partitionNames.
*/
public int getPartitionNamesCount() {
return partitionNames_.size();
}
/**
*
* must
*
*
* repeated string partition_names = 4;
* @param index The index of the element to return.
* @return The partitionNames at the given index.
*/
public java.lang.String getPartitionNames(int index) {
return partitionNames_.get(index);
}
/**
*
* must
*
*
* repeated string partition_names = 4;
* @param index The index of the value to return.
* @return The bytes of the partitionNames at the given index.
*/
public com.google.protobuf.ByteString
getPartitionNamesBytes(int index) {
return partitionNames_.getByteString(index);
}
/**
*
* must
*
*
* repeated string partition_names = 4;
* @param index The index to set the value at.
* @param value The partitionNames to set.
* @return This builder for chaining.
*/
public Builder setPartitionNames(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensurePartitionNamesIsMutable();
partitionNames_.set(index, value);
onChanged();
return this;
}
/**
*
* must
*
*
* repeated string partition_names = 4;
* @param value The partitionNames to add.
* @return This builder for chaining.
*/
public Builder addPartitionNames(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensurePartitionNamesIsMutable();
partitionNames_.add(value);
onChanged();
return this;
}
/**
*
* must
*
*
* repeated string partition_names = 4;
* @param values The partitionNames to add.
* @return This builder for chaining.
*/
public Builder addAllPartitionNames(
java.lang.Iterable values) {
ensurePartitionNamesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, partitionNames_);
onChanged();
return this;
}
/**
*
* must
*
*
* repeated string partition_names = 4;
* @return This builder for chaining.
*/
public Builder clearPartitionNames() {
partitionNames_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
* must
*
*
* repeated string partition_names = 4;
* @param value The bytes of the partitionNames to add.
* @return This builder for chaining.
*/
public Builder addPartitionNamesBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensurePartitionNamesIsMutable();
partitionNames_.add(value);
onChanged();
return this;
}
private java.lang.Object dsl_ = "";
/**
*
* must
*
*
* string dsl = 5;
* @return The dsl.
*/
public java.lang.String getDsl() {
java.lang.Object ref = dsl_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
dsl_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* must
*
*
* string dsl = 5;
* @return The bytes for dsl.
*/
public com.google.protobuf.ByteString
getDslBytes() {
java.lang.Object ref = dsl_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
dsl_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* must
*
*
* string dsl = 5;
* @param value The dsl to set.
* @return This builder for chaining.
*/
public Builder setDsl(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
dsl_ = value;
onChanged();
return this;
}
/**
*
* must
*
*
* string dsl = 5;
* @return This builder for chaining.
*/
public Builder clearDsl() {
dsl_ = getDefaultInstance().getDsl();
onChanged();
return this;
}
/**
*
* must
*
*
* string dsl = 5;
* @param value The bytes for dsl to set.
* @return This builder for chaining.
*/
public Builder setDslBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
dsl_ = value;
onChanged();
return this;
}
private com.google.protobuf.ByteString placeholderGroup_ = com.google.protobuf.ByteString.EMPTY;
/**
*
* serialized `PlaceholderGroup`
*
*
* bytes placeholder_group = 6;
* @return The placeholderGroup.
*/
@java.lang.Override
public com.google.protobuf.ByteString getPlaceholderGroup() {
return placeholderGroup_;
}
/**
*
* serialized `PlaceholderGroup`
*
*
* bytes placeholder_group = 6;
* @param value The placeholderGroup to set.
* @return This builder for chaining.
*/
public Builder setPlaceholderGroup(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
placeholderGroup_ = value;
onChanged();
return this;
}
/**
*
* serialized `PlaceholderGroup`
*
*
* bytes placeholder_group = 6;
* @return This builder for chaining.
*/
public Builder clearPlaceholderGroup() {
placeholderGroup_ = getDefaultInstance().getPlaceholderGroup();
onChanged();
return this;
}
private int dslType_ = 0;
/**
*
* must
*
*
* .milvus.proto.common.DslType dsl_type = 7;
* @return The enum numeric value on the wire for dslType.
*/
@java.lang.Override public int getDslTypeValue() {
return dslType_;
}
/**
*
* must
*
*
* .milvus.proto.common.DslType dsl_type = 7;
* @param value The enum numeric value on the wire for dslType to set.
* @return This builder for chaining.
*/
public Builder setDslTypeValue(int value) {
dslType_ = value;
onChanged();
return this;
}
/**
*
* must
*
*
* .milvus.proto.common.DslType dsl_type = 7;
* @return The dslType.
*/
@java.lang.Override
public io.milvus.grpc.DslType getDslType() {
@SuppressWarnings("deprecation")
io.milvus.grpc.DslType result = io.milvus.grpc.DslType.valueOf(dslType_);
return result == null ? io.milvus.grpc.DslType.UNRECOGNIZED : result;
}
/**
*
* must
*
*
* .milvus.proto.common.DslType dsl_type = 7;
* @param value The dslType to set.
* @return This builder for chaining.
*/
public Builder setDslType(io.milvus.grpc.DslType value) {
if (value == null) {
throw new NullPointerException();
}
dslType_ = value.getNumber();
onChanged();
return this;
}
/**
*
* must
*
*
* .milvus.proto.common.DslType dsl_type = 7;
* @return This builder for chaining.
*/
public Builder clearDslType() {
dslType_ = 0;
onChanged();
return this;
}
private com.google.protobuf.LazyStringList outputFields_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureOutputFieldsIsMutable() {
if (!((bitField0_ & 0x00000002) != 0)) {
outputFields_ = new com.google.protobuf.LazyStringArrayList(outputFields_);
bitField0_ |= 0x00000002;
}
}
/**
* repeated string output_fields = 8;
* @return A list containing the outputFields.
*/
public com.google.protobuf.ProtocolStringList
getOutputFieldsList() {
return outputFields_.getUnmodifiableView();
}
/**
* repeated string output_fields = 8;
* @return The count of outputFields.
*/
public int getOutputFieldsCount() {
return outputFields_.size();
}
/**
* repeated string output_fields = 8;
* @param index The index of the element to return.
* @return The outputFields at the given index.
*/
public java.lang.String getOutputFields(int index) {
return outputFields_.get(index);
}
/**
* repeated string output_fields = 8;
* @param index The index of the value to return.
* @return The bytes of the outputFields at the given index.
*/
public com.google.protobuf.ByteString
getOutputFieldsBytes(int index) {
return outputFields_.getByteString(index);
}
/**
* repeated string output_fields = 8;
* @param index The index to set the value at.
* @param value The outputFields to set.
* @return This builder for chaining.
*/
public Builder setOutputFields(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputFieldsIsMutable();
outputFields_.set(index, value);
onChanged();
return this;
}
/**
* repeated string output_fields = 8;
* @param value The outputFields to add.
* @return This builder for chaining.
*/
public Builder addOutputFields(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureOutputFieldsIsMutable();
outputFields_.add(value);
onChanged();
return this;
}
/**
* repeated string output_fields = 8;
* @param values The outputFields to add.
* @return This builder for chaining.
*/
public Builder addAllOutputFields(
java.lang.Iterable values) {
ensureOutputFieldsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, outputFields_);
onChanged();
return this;
}
/**
* repeated string output_fields = 8;
* @return This builder for chaining.
*/
public Builder clearOutputFields() {
outputFields_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
* repeated string output_fields = 8;
* @param value The bytes of the outputFields to add.
* @return This builder for chaining.
*/
public Builder addOutputFieldsBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureOutputFieldsIsMutable();
outputFields_.add(value);
onChanged();
return this;
}
private java.util.List searchParams_ =
java.util.Collections.emptyList();
private void ensureSearchParamsIsMutable() {
if (!((bitField0_ & 0x00000004) != 0)) {
searchParams_ = new java.util.ArrayList(searchParams_);
bitField0_ |= 0x00000004;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.milvus.grpc.KeyValuePair, io.milvus.grpc.KeyValuePair.Builder, io.milvus.grpc.KeyValuePairOrBuilder> searchParamsBuilder_;
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public java.util.List getSearchParamsList() {
if (searchParamsBuilder_ == null) {
return java.util.Collections.unmodifiableList(searchParams_);
} else {
return searchParamsBuilder_.getMessageList();
}
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public int getSearchParamsCount() {
if (searchParamsBuilder_ == null) {
return searchParams_.size();
} else {
return searchParamsBuilder_.getCount();
}
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public io.milvus.grpc.KeyValuePair getSearchParams(int index) {
if (searchParamsBuilder_ == null) {
return searchParams_.get(index);
} else {
return searchParamsBuilder_.getMessage(index);
}
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public Builder setSearchParams(
int index, io.milvus.grpc.KeyValuePair value) {
if (searchParamsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureSearchParamsIsMutable();
searchParams_.set(index, value);
onChanged();
} else {
searchParamsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public Builder setSearchParams(
int index, io.milvus.grpc.KeyValuePair.Builder builderForValue) {
if (searchParamsBuilder_ == null) {
ensureSearchParamsIsMutable();
searchParams_.set(index, builderForValue.build());
onChanged();
} else {
searchParamsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public Builder addSearchParams(io.milvus.grpc.KeyValuePair value) {
if (searchParamsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureSearchParamsIsMutable();
searchParams_.add(value);
onChanged();
} else {
searchParamsBuilder_.addMessage(value);
}
return this;
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public Builder addSearchParams(
int index, io.milvus.grpc.KeyValuePair value) {
if (searchParamsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureSearchParamsIsMutable();
searchParams_.add(index, value);
onChanged();
} else {
searchParamsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public Builder addSearchParams(
io.milvus.grpc.KeyValuePair.Builder builderForValue) {
if (searchParamsBuilder_ == null) {
ensureSearchParamsIsMutable();
searchParams_.add(builderForValue.build());
onChanged();
} else {
searchParamsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public Builder addSearchParams(
int index, io.milvus.grpc.KeyValuePair.Builder builderForValue) {
if (searchParamsBuilder_ == null) {
ensureSearchParamsIsMutable();
searchParams_.add(index, builderForValue.build());
onChanged();
} else {
searchParamsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public Builder addAllSearchParams(
java.lang.Iterable extends io.milvus.grpc.KeyValuePair> values) {
if (searchParamsBuilder_ == null) {
ensureSearchParamsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, searchParams_);
onChanged();
} else {
searchParamsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public Builder clearSearchParams() {
if (searchParamsBuilder_ == null) {
searchParams_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
} else {
searchParamsBuilder_.clear();
}
return this;
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public Builder removeSearchParams(int index) {
if (searchParamsBuilder_ == null) {
ensureSearchParamsIsMutable();
searchParams_.remove(index);
onChanged();
} else {
searchParamsBuilder_.remove(index);
}
return this;
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public io.milvus.grpc.KeyValuePair.Builder getSearchParamsBuilder(
int index) {
return getSearchParamsFieldBuilder().getBuilder(index);
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public io.milvus.grpc.KeyValuePairOrBuilder getSearchParamsOrBuilder(
int index) {
if (searchParamsBuilder_ == null) {
return searchParams_.get(index); } else {
return searchParamsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public java.util.List extends io.milvus.grpc.KeyValuePairOrBuilder>
getSearchParamsOrBuilderList() {
if (searchParamsBuilder_ != null) {
return searchParamsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(searchParams_);
}
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public io.milvus.grpc.KeyValuePair.Builder addSearchParamsBuilder() {
return getSearchParamsFieldBuilder().addBuilder(
io.milvus.grpc.KeyValuePair.getDefaultInstance());
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public io.milvus.grpc.KeyValuePair.Builder addSearchParamsBuilder(
int index) {
return getSearchParamsFieldBuilder().addBuilder(
index, io.milvus.grpc.KeyValuePair.getDefaultInstance());
}
/**
*
* must
*
*
* repeated .milvus.proto.common.KeyValuePair search_params = 9;
*/
public java.util.List
getSearchParamsBuilderList() {
return getSearchParamsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.milvus.grpc.KeyValuePair, io.milvus.grpc.KeyValuePair.Builder, io.milvus.grpc.KeyValuePairOrBuilder>
getSearchParamsFieldBuilder() {
if (searchParamsBuilder_ == null) {
searchParamsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
io.milvus.grpc.KeyValuePair, io.milvus.grpc.KeyValuePair.Builder, io.milvus.grpc.KeyValuePairOrBuilder>(
searchParams_,
((bitField0_ & 0x00000004) != 0),
getParentForChildren(),
isClean());
searchParams_ = null;
}
return searchParamsBuilder_;
}
private long travelTimestamp_ ;
/**
* uint64 travel_timestamp = 10;
* @return The travelTimestamp.
*/
@java.lang.Override
public long getTravelTimestamp() {
return travelTimestamp_;
}
/**
* uint64 travel_timestamp = 10;
* @param value The travelTimestamp to set.
* @return This builder for chaining.
*/
public Builder setTravelTimestamp(long value) {
travelTimestamp_ = value;
onChanged();
return this;
}
/**
* uint64 travel_timestamp = 10;
* @return This builder for chaining.
*/
public Builder clearTravelTimestamp() {
travelTimestamp_ = 0L;
onChanged();
return this;
}
private long guaranteeTimestamp_ ;
/**
*
* guarantee_timestamp
*
*
* uint64 guarantee_timestamp = 11;
* @return The guaranteeTimestamp.
*/
@java.lang.Override
public long getGuaranteeTimestamp() {
return guaranteeTimestamp_;
}
/**
*
* guarantee_timestamp
*
*
* uint64 guarantee_timestamp = 11;
* @param value The guaranteeTimestamp to set.
* @return This builder for chaining.
*/
public Builder setGuaranteeTimestamp(long value) {
guaranteeTimestamp_ = value;
onChanged();
return this;
}
/**
*
* guarantee_timestamp
*
*
* uint64 guarantee_timestamp = 11;
* @return This builder for chaining.
*/
public Builder clearGuaranteeTimestamp() {
guaranteeTimestamp_ = 0L;
onChanged();
return this;
}
private long nq_ ;
/**
* int64 nq = 12;
* @return The nq.
*/
@java.lang.Override
public long getNq() {
return nq_;
}
/**
* int64 nq = 12;
* @param value The nq to set.
* @return This builder for chaining.
*/
public Builder setNq(long value) {
nq_ = value;
onChanged();
return this;
}
/**
* int64 nq = 12;
* @return This builder for chaining.
*/
public Builder clearNq() {
nq_ = 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.SearchRequest)
}
// @@protoc_insertion_point(class_scope:milvus.proto.milvus.SearchRequest)
private static final io.milvus.grpc.SearchRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.milvus.grpc.SearchRequest();
}
public static io.milvus.grpc.SearchRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public SearchRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new SearchRequest(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.SearchRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}