All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.milvus.grpc.CollectionSchemaOrBuilder Maven / Gradle / Ivy

Go to download

Java SDK for Milvus, a distributed high-performance vector search engine. update grpc to 1.42.1 update protobuf to 3.19.1

There is a newer version: 2.2.2.1
Show newest version
// 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 getFieldsOrBuilderList(); /** * repeated .milvus.proto.schema.FieldSchema fields = 4; */ io.milvus.grpc.FieldSchemaOrBuilder getFieldsOrBuilder( int index); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy