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

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

Go to download

Java SDK for Milvus, a distributed high-performance vector search engine. update grpc to 1.42.1 update protobuf to 3.19.1

There is a newer version: 2.2.2.1
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy