io.milvus.grpc.BytesArrayOrBuilder 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 BytesArrayOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.schema.BytesArray)
com.google.protobuf.MessageOrBuilder {
/**
* repeated bytes data = 1;
* @return A list containing the data.
*/
java.util.List getDataList();
/**
* repeated bytes data = 1;
* @return The count of data.
*/
int getDataCount();
/**
* repeated bytes data = 1;
* @param index The index of the element to return.
* @return The data at the given index.
*/
com.google.protobuf.ByteString getData(int index);
}