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

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

There is a newer version: 2.4.8
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: common.proto

package io.milvus.grpc;

public interface PlaceholderValueOrBuilder extends
    // @@protoc_insertion_point(interface_extends:milvus.proto.common.PlaceholderValue)
    com.google.protobuf.MessageOrBuilder {

  /**
   * string tag = 1;
   * @return The tag.
   */
  java.lang.String getTag();
  /**
   * string tag = 1;
   * @return The bytes for tag.
   */
  com.google.protobuf.ByteString
      getTagBytes();

  /**
   * .milvus.proto.common.PlaceholderType type = 2;
   * @return The enum numeric value on the wire for type.
   */
  int getTypeValue();
  /**
   * .milvus.proto.common.PlaceholderType type = 2;
   * @return The type.
   */
  io.milvus.grpc.PlaceholderType getType();

  /**
   * 
   * values is a 2d-array of nq rows, every row contains a query vector.
   * for dense vector, all rows are of the same length; for sparse vector,
   * the length of each row may vary depending on their number of non-zeros.
   * 
* * repeated bytes values = 3; * @return A list containing the values. */ java.util.List getValuesList(); /** *
   * values is a 2d-array of nq rows, every row contains a query vector.
   * for dense vector, all rows are of the same length; for sparse vector,
   * the length of each row may vary depending on their number of non-zeros.
   * 
* * repeated bytes values = 3; * @return The count of values. */ int getValuesCount(); /** *
   * values is a 2d-array of nq rows, every row contains a query vector.
   * for dense vector, all rows are of the same length; for sparse vector,
   * the length of each row may vary depending on their number of non-zeros.
   * 
* * repeated bytes values = 3; * @param index The index of the element to return. * @return The values at the given index. */ com.google.protobuf.ByteString getValues(int index); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy