com.yelp.nrtsearch.server.grpc.HitsResultOrBuilder 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/search.proto
// Protobuf Java Version: 3.25.3
package com.yelp.nrtsearch.server.grpc;
public interface HitsResultOrBuilder extends
// @@protoc_insertion_point(interface_extends:luceneserver.HitsResult)
com.google.protobuf.MessageOrBuilder {
/**
*
*Total hit information.
*
*
* .luceneserver.TotalHits totalHits = 3;
* @return Whether the totalHits field is set.
*/
boolean hasTotalHits();
/**
*
*Total hit information.
*
*
* .luceneserver.TotalHits totalHits = 3;
* @return The totalHits.
*/
com.yelp.nrtsearch.server.grpc.TotalHits getTotalHits();
/**
*
*Total hit information.
*
*
* .luceneserver.TotalHits totalHits = 3;
*/
com.yelp.nrtsearch.server.grpc.TotalHitsOrBuilder getTotalHitsOrBuilder();
/**
*
*Ordered hits with scoring/sorting info and retrieved fields.
*
*
* repeated .luceneserver.SearchResponse.Hit hits = 4;
*/
java.util.List
getHitsList();
/**
*
*Ordered hits with scoring/sorting info and retrieved fields.
*
*
* repeated .luceneserver.SearchResponse.Hit hits = 4;
*/
com.yelp.nrtsearch.server.grpc.SearchResponse.Hit getHits(int index);
/**
*
*Ordered hits with scoring/sorting info and retrieved fields.
*
*
* repeated .luceneserver.SearchResponse.Hit hits = 4;
*/
int getHitsCount();
/**
*
*Ordered hits with scoring/sorting info and retrieved fields.
*
*
* repeated .luceneserver.SearchResponse.Hit hits = 4;
*/
java.util.List extends com.yelp.nrtsearch.server.grpc.SearchResponse.HitOrBuilder>
getHitsOrBuilderList();
/**
*
*Ordered hits with scoring/sorting info and retrieved fields.
*
*
* repeated .luceneserver.SearchResponse.Hit hits = 4;
*/
com.yelp.nrtsearch.server.grpc.SearchResponse.HitOrBuilder getHitsOrBuilder(
int index);
}