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

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

There is a newer version: 2.4.8
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 [deprecated = true]; * @deprecated milvus.proto.schema.CollectionSchema.autoID is deprecated. * See schema.proto;l=71 * @return The autoID. */ @java.lang.Deprecated 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); /** *
   * mark whether this table has the dynamic field function enabled.
   * 
* * bool enable_dynamic_field = 5; * @return The enableDynamicField. */ boolean getEnableDynamicField(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy