io.milvus.grpc.PlaceholderValueOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of milvus-sdk-java Show documentation
Show all versions of milvus-sdk-java Show documentation
Java SDK for Milvus, a distributed high-performance vector search engine.
update grpc to 1.42.1
update protobuf to 3.19.1
// 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);
}