io.milvus.grpc.IndexParamOrBuilder 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;
public interface IndexParamOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.grpc.IndexParam)
com.google.protobuf.MessageOrBuilder {
/**
* .milvus.grpc.Status status = 1;
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
* .milvus.grpc.Status status = 1;
* @return The status.
*/
io.milvus.grpc.Status getStatus();
/**
* .milvus.grpc.Status status = 1;
*/
io.milvus.grpc.StatusOrBuilder getStatusOrBuilder();
/**
* string collection_name = 2;
* @return The collectionName.
*/
java.lang.String getCollectionName();
/**
* string collection_name = 2;
* @return The bytes for collectionName.
*/
com.google.protobuf.ByteString
getCollectionNameBytes();
/**
* int32 index_type = 3;
* @return The indexType.
*/
int getIndexType();
/**
* repeated .milvus.grpc.KeyValuePair extra_params = 4;
*/
java.util.List
getExtraParamsList();
/**
* repeated .milvus.grpc.KeyValuePair extra_params = 4;
*/
io.milvus.grpc.KeyValuePair getExtraParams(int index);
/**
* repeated .milvus.grpc.KeyValuePair extra_params = 4;
*/
int getExtraParamsCount();
/**
* repeated .milvus.grpc.KeyValuePair extra_params = 4;
*/
java.util.List extends io.milvus.grpc.KeyValuePairOrBuilder>
getExtraParamsOrBuilderList();
/**
* repeated .milvus.grpc.KeyValuePair extra_params = 4;
*/
io.milvus.grpc.KeyValuePairOrBuilder getExtraParamsOrBuilder(
int index);
}