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

com.aerospike.vector.client.proto.ValueOrBuilder Maven / Gradle / Ivy

Go to download

This project includes the Java client for Aerospike Vector Search for high-performance data interactions.

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: types.proto

// Protobuf Java Version: 3.25.1
package com.aerospike.vector.client.proto;

public interface ValueOrBuilder extends
    // @@protoc_insertion_point(interface_extends:aerospike.vector.Value)
    com.google.protobuf.MessageOrBuilder {

  /**
   * string stringValue = 1;
   * @return Whether the stringValue field is set.
   */
  boolean hasStringValue();
  /**
   * string stringValue = 1;
   * @return The stringValue.
   */
  java.lang.String getStringValue();
  /**
   * string stringValue = 1;
   * @return The bytes for stringValue.
   */
  com.google.protobuf.ByteString
      getStringValueBytes();

  /**
   * bytes bytesValue = 2;
   * @return Whether the bytesValue field is set.
   */
  boolean hasBytesValue();
  /**
   * bytes bytesValue = 2;
   * @return The bytesValue.
   */
  com.google.protobuf.ByteString getBytesValue();

  /**
   * int32 intValue = 3;
   * @return Whether the intValue field is set.
   */
  boolean hasIntValue();
  /**
   * int32 intValue = 3;
   * @return The intValue.
   */
  int getIntValue();

  /**
   * int64 longValue = 4;
   * @return Whether the longValue field is set.
   */
  boolean hasLongValue();
  /**
   * int64 longValue = 4;
   * @return The longValue.
   */
  long getLongValue();

  /**
   * float floatValue = 5;
   * @return Whether the floatValue field is set.
   */
  boolean hasFloatValue();
  /**
   * float floatValue = 5;
   * @return The floatValue.
   */
  float getFloatValue();

  /**
   * double doubleValue = 6;
   * @return Whether the doubleValue field is set.
   */
  boolean hasDoubleValue();
  /**
   * double doubleValue = 6;
   * @return The doubleValue.
   */
  double getDoubleValue();

  /**
   * .aerospike.vector.Map mapValue = 7;
   * @return Whether the mapValue field is set.
   */
  boolean hasMapValue();
  /**
   * .aerospike.vector.Map mapValue = 7;
   * @return The mapValue.
   */
  com.aerospike.vector.client.proto.Map getMapValue();
  /**
   * .aerospike.vector.Map mapValue = 7;
   */
  com.aerospike.vector.client.proto.MapOrBuilder getMapValueOrBuilder();

  /**
   * .aerospike.vector.List listValue = 8;
   * @return Whether the listValue field is set.
   */
  boolean hasListValue();
  /**
   * .aerospike.vector.List listValue = 8;
   * @return The listValue.
   */
  com.aerospike.vector.client.proto.List getListValue();
  /**
   * .aerospike.vector.List listValue = 8;
   */
  com.aerospike.vector.client.proto.ListOrBuilder getListValueOrBuilder();

  /**
   * .aerospike.vector.Vector vectorValue = 9;
   * @return Whether the vectorValue field is set.
   */
  boolean hasVectorValue();
  /**
   * .aerospike.vector.Vector vectorValue = 9;
   * @return The vectorValue.
   */
  com.aerospike.vector.client.proto.Vector getVectorValue();
  /**
   * .aerospike.vector.Vector vectorValue = 9;
   */
  com.aerospike.vector.client.proto.VectorOrBuilder getVectorValueOrBuilder();

  /**
   * bool booleanValue = 10;
   * @return Whether the booleanValue field is set.
   */
  boolean hasBooleanValue();
  /**
   * bool booleanValue = 10;
   * @return The booleanValue.
   */
  boolean getBooleanValue();

  com.aerospike.vector.client.proto.Value.ValueCase getValueCase();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy