com.aerospike.vector.client.proto.MapKeyOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of avs-client-java Show documentation
Show all versions of avs-client-java Show documentation
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 MapKeyOrBuilder extends
// @@protoc_insertion_point(interface_extends:aerospike.vector.MapKey)
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();
com.aerospike.vector.client.proto.MapKey.ValueCase getValueCase();
}