All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yelp.nrtsearch.server.grpc.RangeQueryOrBuilder Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta.1
Show newest version
// 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(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy