io.milvus.grpc.CollectionSchemaOrBuilder 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 CollectionSchemaOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.schema.CollectionSchema)
com.google.protobuf.MessageOrBuilder {
/**
* string name = 1;
* @return The name.
*/
java.lang.String getName();
/**
* string name = 1;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* string description = 2;
* @return The description.
*/
java.lang.String getDescription();
/**
* string description = 2;
* @return The bytes for description.
*/
com.google.protobuf.ByteString
getDescriptionBytes();
/**
*
* deprecated later, keep compatible with c++ part now
*
*
* bool autoID = 3;
* @return The autoID.
*/
boolean getAutoID();
/**
* repeated .milvus.proto.schema.FieldSchema fields = 4;
*/
java.util.List
getFieldsList();
/**
* repeated .milvus.proto.schema.FieldSchema fields = 4;
*/
io.milvus.grpc.FieldSchema getFields(int index);
/**
* repeated .milvus.proto.schema.FieldSchema fields = 4;
*/
int getFieldsCount();
/**
* repeated .milvus.proto.schema.FieldSchema fields = 4;
*/
java.util.List extends io.milvus.grpc.FieldSchemaOrBuilder>
getFieldsOrBuilderList();
/**
* repeated .milvus.proto.schema.FieldSchema fields = 4;
*/
io.milvus.grpc.FieldSchemaOrBuilder getFieldsOrBuilder(
int index);
}