io.milvus.grpc.VectorFieldOrBuilder 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: schema.proto
package io.milvus.grpc;
public interface VectorFieldOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.schema.VectorField)
com.google.protobuf.MessageOrBuilder {
/**
* int64 dim = 1;
* @return The dim.
*/
long getDim();
/**
* .milvus.proto.schema.FloatArray float_vector = 2;
* @return Whether the floatVector field is set.
*/
boolean hasFloatVector();
/**
* .milvus.proto.schema.FloatArray float_vector = 2;
* @return The floatVector.
*/
io.milvus.grpc.FloatArray getFloatVector();
/**
* .milvus.proto.schema.FloatArray float_vector = 2;
*/
io.milvus.grpc.FloatArrayOrBuilder getFloatVectorOrBuilder();
/**
* bytes binary_vector = 3;
* @return Whether the binaryVector field is set.
*/
boolean hasBinaryVector();
/**
* bytes binary_vector = 3;
* @return The binaryVector.
*/
com.google.protobuf.ByteString getBinaryVector();
public io.milvus.grpc.VectorField.DataCase getDataCase();
}