io.milvus.grpc.SearchResultDataOrBuilder 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: schema.proto
package io.milvus.grpc;
public interface SearchResultDataOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.schema.SearchResultData)
com.google.protobuf.MessageOrBuilder {
/**
* int64 num_queries = 1;
* @return The numQueries.
*/
long getNumQueries();
/**
* int64 top_k = 2;
* @return The topK.
*/
long getTopK();
/**
* repeated .milvus.proto.schema.FieldData fields_data = 3;
*/
java.util.List
getFieldsDataList();
/**
* repeated .milvus.proto.schema.FieldData fields_data = 3;
*/
io.milvus.grpc.FieldData getFieldsData(int index);
/**
* repeated .milvus.proto.schema.FieldData fields_data = 3;
*/
int getFieldsDataCount();
/**
* repeated .milvus.proto.schema.FieldData fields_data = 3;
*/
java.util.List extends io.milvus.grpc.FieldDataOrBuilder>
getFieldsDataOrBuilderList();
/**
* repeated .milvus.proto.schema.FieldData fields_data = 3;
*/
io.milvus.grpc.FieldDataOrBuilder getFieldsDataOrBuilder(
int index);
/**
* repeated float scores = 4;
* @return A list containing the scores.
*/
java.util.List getScoresList();
/**
* repeated float scores = 4;
* @return The count of scores.
*/
int getScoresCount();
/**
* repeated float scores = 4;
* @param index The index of the element to return.
* @return The scores at the given index.
*/
float getScores(int index);
/**
* .milvus.proto.schema.IDs ids = 5;
* @return Whether the ids field is set.
*/
boolean hasIds();
/**
* .milvus.proto.schema.IDs ids = 5;
* @return The ids.
*/
io.milvus.grpc.IDs getIds();
/**
* .milvus.proto.schema.IDs ids = 5;
*/
io.milvus.grpc.IDsOrBuilder getIdsOrBuilder();
/**
* repeated int64 topks = 6;
* @return A list containing the topks.
*/
java.util.List getTopksList();
/**
* repeated int64 topks = 6;
* @return The count of topks.
*/
int getTopksCount();
/**
* repeated int64 topks = 6;
* @param index The index of the element to return.
* @return The topks at the given index.
*/
long getTopks(int index);
/**
* repeated string output_fields = 7;
* @return A list containing the outputFields.
*/
java.util.List
getOutputFieldsList();
/**
* repeated string output_fields = 7;
* @return The count of outputFields.
*/
int getOutputFieldsCount();
/**
* repeated string output_fields = 7;
* @param index The index of the element to return.
* @return The outputFields at the given index.
*/
java.lang.String getOutputFields(int index);
/**
* repeated string output_fields = 7;
* @param index The index of the value to return.
* @return The bytes of the outputFields at the given index.
*/
com.google.protobuf.ByteString
getOutputFieldsBytes(int index);
/**
* .milvus.proto.schema.FieldData group_by_field_value = 8;
* @return Whether the groupByFieldValue field is set.
*/
boolean hasGroupByFieldValue();
/**
* .milvus.proto.schema.FieldData group_by_field_value = 8;
* @return The groupByFieldValue.
*/
io.milvus.grpc.FieldData getGroupByFieldValue();
/**
* .milvus.proto.schema.FieldData group_by_field_value = 8;
*/
io.milvus.grpc.FieldDataOrBuilder getGroupByFieldValueOrBuilder();
/**
* int64 all_search_count = 9;
* @return The allSearchCount.
*/
long getAllSearchCount();
/**
* repeated float distances = 10;
* @return A list containing the distances.
*/
java.util.List getDistancesList();
/**
* repeated float distances = 10;
* @return The count of distances.
*/
int getDistancesCount();
/**
* repeated float distances = 10;
* @param index The index of the element to return.
* @return The distances at the given index.
*/
float getDistances(int index);
}