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

com.aerospike.vector.client.proto.KeyOrBuilder 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 KeyOrBuilder extends
    // @@protoc_insertion_point(interface_extends:aerospike.vector.Key)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   * The storage namespace.
   * 
* * string namespace = 1; * @return The namespace. */ java.lang.String getNamespace(); /** *
   * The storage namespace.
   * 
* * string namespace = 1; * @return The bytes for namespace. */ com.google.protobuf.ByteString getNamespaceBytes(); /** *
   * Optional storage set.
   * 
* * optional string set = 2; * @return Whether the set field is set. */ boolean hasSet(); /** *
   * Optional storage set.
   * 
* * optional string set = 2; * @return The set. */ java.lang.String getSet(); /** *
   * Optional storage set.
   * 
* * optional string set = 2; * @return The bytes for set. */ com.google.protobuf.ByteString getSetBytes(); /** * string stringValue = 3; * @return Whether the stringValue field is set. */ boolean hasStringValue(); /** * string stringValue = 3; * @return The stringValue. */ java.lang.String getStringValue(); /** * string stringValue = 3; * @return The bytes for stringValue. */ com.google.protobuf.ByteString getStringValueBytes(); /** * bytes bytesValue = 4; * @return Whether the bytesValue field is set. */ boolean hasBytesValue(); /** * bytes bytesValue = 4; * @return The bytesValue. */ com.google.protobuf.ByteString getBytesValue(); /** * int32 intValue = 5; * @return Whether the intValue field is set. */ boolean hasIntValue(); /** * int32 intValue = 5; * @return The intValue. */ int getIntValue(); /** * int64 longValue = 6; * @return Whether the longValue field is set. */ boolean hasLongValue(); /** * int64 longValue = 6; * @return The longValue. */ long getLongValue(); com.aerospike.vector.client.proto.Key.ValueCase getValueCase(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy