com.aerospike.vector.client.proto.MapEntryOrBuilder 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 MapEntryOrBuilder extends
// @@protoc_insertion_point(interface_extends:aerospike.vector.MapEntry)
com.google.protobuf.MessageOrBuilder {
/**
* .aerospike.vector.MapKey key = 1;
* @return Whether the key field is set.
*/
boolean hasKey();
/**
* .aerospike.vector.MapKey key = 1;
* @return The key.
*/
com.aerospike.vector.client.proto.MapKey getKey();
/**
* .aerospike.vector.MapKey key = 1;
*/
com.aerospike.vector.client.proto.MapKeyOrBuilder getKeyOrBuilder();
/**
* .aerospike.vector.Value value = 2;
* @return Whether the value field is set.
*/
boolean hasValue();
/**
* .aerospike.vector.Value value = 2;
* @return The value.
*/
com.aerospike.vector.client.proto.Value getValue();
/**
* .aerospike.vector.Value value = 2;
*/
com.aerospike.vector.client.proto.ValueOrBuilder getValueOrBuilder();
}