com.yelp.nrtsearch.server.grpc.BooleanClauseOrBuilder 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 BooleanClauseOrBuilder extends
// @@protoc_insertion_point(interface_extends:luceneserver.BooleanClause)
com.google.protobuf.MessageOrBuilder {
/**
*
* The Query for the clause.
*
*
* .luceneserver.Query query = 1;
* @return Whether the query field is set.
*/
boolean hasQuery();
/**
*
* The Query for the clause.
*
*
* .luceneserver.Query query = 1;
* @return The query.
*/
com.yelp.nrtsearch.server.grpc.Query getQuery();
/**
*
* The Query for the clause.
*
*
* .luceneserver.Query query = 1;
*/
com.yelp.nrtsearch.server.grpc.QueryOrBuilder getQueryOrBuilder();
/**
*
* Specifies how this clause must occur in a matching document. SHOULD by default.
*
*
* .luceneserver.BooleanClause.Occur occur = 2;
* @return The enum numeric value on the wire for occur.
*/
int getOccurValue();
/**
*
* Specifies how this clause must occur in a matching document. SHOULD by default.
*
*
* .luceneserver.BooleanClause.Occur occur = 2;
* @return The occur.
*/
com.yelp.nrtsearch.server.grpc.BooleanClause.Occur getOccur();
}