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

io.milvus.grpc.SearchByIDParamOrBuilder 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: milvus.proto

package io.milvus.grpc;

public interface SearchByIDParamOrBuilder extends
    // @@protoc_insertion_point(interface_extends:milvus.grpc.SearchByIDParam)
    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();

  /**
   * repeated string partition_tag_array = 2;
   * @return A list containing the partitionTagArray.
   */
  java.util.List
      getPartitionTagArrayList();
  /**
   * repeated string partition_tag_array = 2;
   * @return The count of partitionTagArray.
   */
  int getPartitionTagArrayCount();
  /**
   * repeated string partition_tag_array = 2;
   * @param index The index of the element to return.
   * @return The partitionTagArray at the given index.
   */
  java.lang.String getPartitionTagArray(int index);
  /**
   * repeated string partition_tag_array = 2;
   * @param index The index of the value to return.
   * @return The bytes of the partitionTagArray at the given index.
   */
  com.google.protobuf.ByteString
      getPartitionTagArrayBytes(int index);

  /**
   * repeated int64 id_array = 3;
   * @return A list containing the idArray.
   */
  java.util.List getIdArrayList();
  /**
   * repeated int64 id_array = 3;
   * @return The count of idArray.
   */
  int getIdArrayCount();
  /**
   * repeated int64 id_array = 3;
   * @param index The index of the element to return.
   * @return The idArray at the given index.
   */
  long getIdArray(int index);

  /**
   * int64 topk = 4;
   * @return The topk.
   */
  long getTopk();

  /**
   * repeated .milvus.grpc.KeyValuePair extra_params = 5;
   */
  java.util.List 
      getExtraParamsList();
  /**
   * repeated .milvus.grpc.KeyValuePair extra_params = 5;
   */
  io.milvus.grpc.KeyValuePair getExtraParams(int index);
  /**
   * repeated .milvus.grpc.KeyValuePair extra_params = 5;
   */
  int getExtraParamsCount();
  /**
   * repeated .milvus.grpc.KeyValuePair extra_params = 5;
   */
  java.util.List 
      getExtraParamsOrBuilderList();
  /**
   * repeated .milvus.grpc.KeyValuePair extra_params = 5;
   */
  io.milvus.grpc.KeyValuePairOrBuilder getExtraParamsOrBuilder(
      int index);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy