com.yelp.nrtsearch.server.grpc.RangeQueryOrBuilder 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 RangeQueryOrBuilder extends
// @@protoc_insertion_point(interface_extends:luceneserver.RangeQuery)
com.google.protobuf.MessageOrBuilder {
/**
*
* Field in the document to query
*
*
* string field = 1;
* @return The field.
*/
java.lang.String getField();
/**
*
* Field in the document to query
*
*
* string field = 1;
* @return The bytes for field.
*/
com.google.protobuf.ByteString
getFieldBytes();
/**
*
* Lower bound, inclusive by default
*
*
* string lower = 2;
* @return The lower.
*/
java.lang.String getLower();
/**
*
* Lower bound, inclusive by default
*
*
* string lower = 2;
* @return The bytes for lower.
*/
com.google.protobuf.ByteString
getLowerBytes();
/**
*
* Upper bound, inclusive by default
*
*
* string upper = 3;
* @return The upper.
*/
java.lang.String getUpper();
/**
*
* Upper bound, inclusive by default
*
*
* string upper = 3;
* @return The bytes for upper.
*/
com.google.protobuf.ByteString
getUpperBytes();
/**
*
* Set true to make lower bound exclusive
*
*
* bool lowerExclusive = 4;
* @return The lowerExclusive.
*/
boolean getLowerExclusive();
/**
*
* Set true to make upper bound exclusive
*
*
* bool upperExclusive = 5;
* @return The upperExclusive.
*/
boolean getUpperExclusive();
}