io.milvus.grpc.VectorsIdentityOrBuilder 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 VectorsIdentityOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.grpc.VectorsIdentity)
com.google.protobuf.MessageOrBuilder {
/**
* string collection_name = 1;
* @return The collectionName.
*/
java.lang.String getCollectionName();
/**
* string collection_name = 1;
* @return The bytes for collectionName.
*/
com.google.protobuf.ByteString
getCollectionNameBytes();
/**
* string partition_tag = 3;
* @return The partitionTag.
*/
java.lang.String getPartitionTag();
/**
* string partition_tag = 3;
* @return The bytes for partitionTag.
*/
com.google.protobuf.ByteString
getPartitionTagBytes();
/**
* repeated int64 id_array = 2;
* @return A list containing the idArray.
*/
java.util.List getIdArrayList();
/**
* repeated int64 id_array = 2;
* @return The count of idArray.
*/
int getIdArrayCount();
/**
* repeated int64 id_array = 2;
* @param index The index of the element to return.
* @return The idArray at the given index.
*/
long getIdArray(int index);
}