com.yelp.nrtsearch.server.grpc.NrtsearchIndexOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clientlib Show documentation
Show all versions of clientlib Show documentation
GRPC Clientlib for nrtSearch
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: yelp/nrtsearch/suggest.proto
// Protobuf Java Version: 3.25.3
package com.yelp.nrtsearch.server.grpc;
public interface NrtsearchIndexOrBuilder extends
// @@protoc_insertion_point(interface_extends:luceneserver.NrtsearchIndex)
com.google.protobuf.MessageOrBuilder {
/**
* int64 uniqueId = 1;
* @return The uniqueId.
*/
long getUniqueId();
/**
* repeated string searchTexts = 2;
* @return A list containing the searchTexts.
*/
java.util.List
getSearchTextsList();
/**
* repeated string searchTexts = 2;
* @return The count of searchTexts.
*/
int getSearchTextsCount();
/**
* repeated string searchTexts = 2;
* @param index The index of the element to return.
* @return The searchTexts at the given index.
*/
java.lang.String getSearchTexts(int index);
/**
* repeated string searchTexts = 2;
* @param index The index of the value to return.
* @return The bytes of the searchTexts at the given index.
*/
com.google.protobuf.ByteString
getSearchTextsBytes(int index);
/**
* int64 score = 3;
* @return The score.
*/
long getScore();
/**
* repeated string contexts = 4;
* @return A list containing the contexts.
*/
java.util.List
getContextsList();
/**
* repeated string contexts = 4;
* @return The count of contexts.
*/
int getContextsCount();
/**
* repeated string contexts = 4;
* @param index The index of the element to return.
* @return The contexts at the given index.
*/
java.lang.String getContexts(int index);
/**
* repeated string contexts = 4;
* @param index The index of the value to return.
* @return The bytes of the contexts at the given index.
*/
com.google.protobuf.ByteString
getContextsBytes(int index);
/**
* bytes payload = 5;
* @return The payload.
*/
com.google.protobuf.ByteString getPayload();
}