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

io.milvus.grpc.PlaceholderValueOrBuilder 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: 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, every array contains a vector
   * 
* * repeated bytes values = 3; * @return A list containing the values. */ java.util.List getValuesList(); /** *
   * values is a 2d-array, every array contains a vector
   * 
* * repeated bytes values = 3; * @return The count of values. */ int getValuesCount(); /** *
   * values is a 2d-array, every array contains a vector
   * 
* * 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