io.milvus.grpc.SparseFloatArrayOrBuilder 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 database.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: schema.proto
package io.milvus.grpc;
public interface SparseFloatArrayOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.schema.SparseFloatArray)
com.google.protobuf.MessageOrBuilder {
/**
* repeated bytes contents = 1;
* @return A list containing the contents.
*/
java.util.List getContentsList();
/**
* repeated bytes contents = 1;
* @return The count of contents.
*/
int getContentsCount();
/**
* repeated bytes contents = 1;
* @param index The index of the element to return.
* @return The contents at the given index.
*/
com.google.protobuf.ByteString getContents(int index);
/**
*
* dim is the max dimension of the current batch of vectors
*
*
* int64 dim = 2;
* @return The dim.
*/
long getDim();
}