com.aerospike.vector.client.proto.ProjectionSpecOrBuilder 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 ProjectionSpecOrBuilder extends
// @@protoc_insertion_point(interface_extends:aerospike.vector.ProjectionSpec)
com.google.protobuf.MessageOrBuilder {
/**
*
* The fields to include.
*
*
* .aerospike.vector.ProjectionFilter include = 1;
* @return Whether the include field is set.
*/
boolean hasInclude();
/**
*
* The fields to include.
*
*
* .aerospike.vector.ProjectionFilter include = 1;
* @return The include.
*/
com.aerospike.vector.client.proto.ProjectionFilter getInclude();
/**
*
* The fields to include.
*
*
* .aerospike.vector.ProjectionFilter include = 1;
*/
com.aerospike.vector.client.proto.ProjectionFilterOrBuilder getIncludeOrBuilder();
/**
*
* The fields to exclude.
*
*
* .aerospike.vector.ProjectionFilter exclude = 2;
* @return Whether the exclude field is set.
*/
boolean hasExclude();
/**
*
* The fields to exclude.
*
*
* .aerospike.vector.ProjectionFilter exclude = 2;
* @return The exclude.
*/
com.aerospike.vector.client.proto.ProjectionFilter getExclude();
/**
*
* The fields to exclude.
*
*
* .aerospike.vector.ProjectionFilter exclude = 2;
*/
com.aerospike.vector.client.proto.ProjectionFilterOrBuilder getExcludeOrBuilder();
}