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

io.milvus.grpc.FieldSchemaOrBuilder 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 restore the calcDistance interface that is removed in 2.1.0-beta4

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 FieldSchemaOrBuilder extends
    // @@protoc_insertion_point(interface_extends:milvus.proto.schema.FieldSchema)
    com.google.protobuf.MessageOrBuilder {

  /**
   * int64 fieldID = 1;
   * @return The fieldID.
   */
  long getFieldID();

  /**
   * string name = 2;
   * @return The name.
   */
  java.lang.String getName();
  /**
   * string name = 2;
   * @return The bytes for name.
   */
  com.google.protobuf.ByteString
      getNameBytes();

  /**
   * bool is_primary_key = 3;
   * @return The isPrimaryKey.
   */
  boolean getIsPrimaryKey();

  /**
   * string description = 4;
   * @return The description.
   */
  java.lang.String getDescription();
  /**
   * string description = 4;
   * @return The bytes for description.
   */
  com.google.protobuf.ByteString
      getDescriptionBytes();

  /**
   * .milvus.proto.schema.DataType data_type = 5;
   * @return The enum numeric value on the wire for dataType.
   */
  int getDataTypeValue();
  /**
   * .milvus.proto.schema.DataType data_type = 5;
   * @return The dataType.
   */
  io.milvus.grpc.DataType getDataType();

  /**
   * repeated .milvus.proto.common.KeyValuePair type_params = 6;
   */
  java.util.List 
      getTypeParamsList();
  /**
   * repeated .milvus.proto.common.KeyValuePair type_params = 6;
   */
  io.milvus.grpc.KeyValuePair getTypeParams(int index);
  /**
   * repeated .milvus.proto.common.KeyValuePair type_params = 6;
   */
  int getTypeParamsCount();
  /**
   * repeated .milvus.proto.common.KeyValuePair type_params = 6;
   */
  java.util.List 
      getTypeParamsOrBuilderList();
  /**
   * repeated .milvus.proto.common.KeyValuePair type_params = 6;
   */
  io.milvus.grpc.KeyValuePairOrBuilder getTypeParamsOrBuilder(
      int index);

  /**
   * repeated .milvus.proto.common.KeyValuePair index_params = 7;
   */
  java.util.List 
      getIndexParamsList();
  /**
   * repeated .milvus.proto.common.KeyValuePair index_params = 7;
   */
  io.milvus.grpc.KeyValuePair getIndexParams(int index);
  /**
   * repeated .milvus.proto.common.KeyValuePair index_params = 7;
   */
  int getIndexParamsCount();
  /**
   * repeated .milvus.proto.common.KeyValuePair index_params = 7;
   */
  java.util.List 
      getIndexParamsOrBuilderList();
  /**
   * repeated .milvus.proto.common.KeyValuePair index_params = 7;
   */
  io.milvus.grpc.KeyValuePairOrBuilder getIndexParamsOrBuilder(
      int index);

  /**
   * bool autoID = 8;
   * @return The autoID.
   */
  boolean getAutoID();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy