All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.milvus.grpc.SearchResultDataOrBuilder Maven / Gradle / Ivy

There is a newer version: 2.4.8
Show newest version
// 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 
      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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy