io.milvus.grpc.IDsOrBuilder 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 IDsOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.schema.IDs)
com.google.protobuf.MessageOrBuilder {
/**
* .milvus.proto.schema.LongArray int_id = 1;
* @return Whether the intId field is set.
*/
boolean hasIntId();
/**
* .milvus.proto.schema.LongArray int_id = 1;
* @return The intId.
*/
io.milvus.grpc.LongArray getIntId();
/**
* .milvus.proto.schema.LongArray int_id = 1;
*/
io.milvus.grpc.LongArrayOrBuilder getIntIdOrBuilder();
/**
* .milvus.proto.schema.StringArray str_id = 2;
* @return Whether the strId field is set.
*/
boolean hasStrId();
/**
* .milvus.proto.schema.StringArray str_id = 2;
* @return The strId.
*/
io.milvus.grpc.StringArray getStrId();
/**
* .milvus.proto.schema.StringArray str_id = 2;
*/
io.milvus.grpc.StringArrayOrBuilder getStrIdOrBuilder();
public io.milvus.grpc.IDs.IdFieldCase getIdFieldCase();
}