com.aerospike.vector.client.proto.IsIndexedRequestOrBuilder 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: transact.proto
// Protobuf Java Version: 3.25.1
package com.aerospike.vector.client.proto;
public interface IsIndexedRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:aerospike.vector.IsIndexedRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The key of the aerospike record holding Vector.
*
*
* .aerospike.vector.Key key = 1;
* @return Whether the key field is set.
*/
boolean hasKey();
/**
*
* The key of the aerospike record holding Vector.
*
*
* .aerospike.vector.Key key = 1;
* @return The key.
*/
com.aerospike.vector.client.proto.Key getKey();
/**
*
* The key of the aerospike record holding Vector.
*
*
* .aerospike.vector.Key key = 1;
*/
com.aerospike.vector.client.proto.KeyOrBuilder getKeyOrBuilder();
/**
*
* Index in which the vector is indexed.
*
*
* .aerospike.vector.IndexId indexId = 2;
* @return Whether the indexId field is set.
*/
boolean hasIndexId();
/**
*
* Index in which the vector is indexed.
*
*
* .aerospike.vector.IndexId indexId = 2;
* @return The indexId.
*/
com.aerospike.vector.client.proto.IndexId getIndexId();
/**
*
* Index in which the vector is indexed.
*
*
* .aerospike.vector.IndexId indexId = 2;
*/
com.aerospike.vector.client.proto.IndexIdOrBuilder getIndexIdOrBuilder();
}