com.yelp.nrtsearch.server.grpc.QuerySortFieldOrBuilder 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 QuerySortFieldOrBuilder extends
// @@protoc_insertion_point(interface_extends:luceneserver.QuerySortField)
com.google.protobuf.MessageOrBuilder {
/**
*
*Compute the doc score for each collected (costs added CPU); default:false
*
*
* bool doDocScores = 1;
* @return The doDocScores.
*/
boolean getDoDocScores();
/**
*
*Compute the max score across all hits (costs added CPU); default: false
*
*
* bool doMaxScore = 2;
* @return The doMaxScore.
*/
boolean getDoMaxScore();
/**
*
*List of Fields to sort on.
*
*
* .luceneserver.SortFields fields = 3;
* @return Whether the fields field is set.
*/
boolean hasFields();
/**
*
*List of Fields to sort on.
*
*
* .luceneserver.SortFields fields = 3;
* @return The fields.
*/
com.yelp.nrtsearch.server.grpc.SortFields getFields();
/**
*
*List of Fields to sort on.
*
*
* .luceneserver.SortFields fields = 3;
*/
com.yelp.nrtsearch.server.grpc.SortFieldsOrBuilder getFieldsOrBuilder();
}