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

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

  /**
   * int64 dim = 1;
   * @return The dim.
   */
  long getDim();

  /**
   * .milvus.proto.schema.FloatArray float_vector = 2;
   * @return Whether the floatVector field is set.
   */
  boolean hasFloatVector();
  /**
   * .milvus.proto.schema.FloatArray float_vector = 2;
   * @return The floatVector.
   */
  io.milvus.grpc.FloatArray getFloatVector();
  /**
   * .milvus.proto.schema.FloatArray float_vector = 2;
   */
  io.milvus.grpc.FloatArrayOrBuilder getFloatVectorOrBuilder();

  /**
   * bytes binary_vector = 3;
   * @return Whether the binaryVector field is set.
   */
  boolean hasBinaryVector();
  /**
   * bytes binary_vector = 3;
   * @return The binaryVector.
   */
  com.google.protobuf.ByteString getBinaryVector();

  public io.milvus.grpc.VectorField.DataCase getDataCase();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy