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

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

  /**
   * bool bool_data = 1;
   * @return Whether the boolData field is set.
   */
  boolean hasBoolData();
  /**
   * bool bool_data = 1;
   * @return The boolData.
   */
  boolean getBoolData();

  /**
   * int32 int_data = 2;
   * @return Whether the intData field is set.
   */
  boolean hasIntData();
  /**
   * int32 int_data = 2;
   * @return The intData.
   */
  int getIntData();

  /**
   * int64 long_data = 3;
   * @return Whether the longData field is set.
   */
  boolean hasLongData();
  /**
   * int64 long_data = 3;
   * @return The longData.
   */
  long getLongData();

  /**
   * float float_data = 4;
   * @return Whether the floatData field is set.
   */
  boolean hasFloatData();
  /**
   * float float_data = 4;
   * @return The floatData.
   */
  float getFloatData();

  /**
   * double double_data = 5;
   * @return Whether the doubleData field is set.
   */
  boolean hasDoubleData();
  /**
   * double double_data = 5;
   * @return The doubleData.
   */
  double getDoubleData();

  /**
   * string string_data = 6;
   * @return Whether the stringData field is set.
   */
  boolean hasStringData();
  /**
   * string string_data = 6;
   * @return The stringData.
   */
  java.lang.String getStringData();
  /**
   * string string_data = 6;
   * @return The bytes for stringData.
   */
  com.google.protobuf.ByteString
      getStringDataBytes();

  /**
   * bytes bytes_data = 7;
   * @return Whether the bytesData field is set.
   */
  boolean hasBytesData();
  /**
   * bytes bytes_data = 7;
   * @return The bytesData.
   */
  com.google.protobuf.ByteString getBytesData();

  io.milvus.grpc.ValueField.DataCase getDataCase();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy