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

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

The 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 TermRangeQueryOrBuilder extends
    // @@protoc_insertion_point(interface_extends:luceneserver.TermRangeQuery)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   * The field to search
   * 
* * string field = 1; * @return The field. */ java.lang.String getField(); /** *
   * The field to search
   * 
* * string field = 1; * @return The bytes for field. */ com.google.protobuf.ByteString getFieldBytes(); /** *
   * The lower bound of the range
   * 
* * string lower_term = 2; * @return The lowerTerm. */ java.lang.String getLowerTerm(); /** *
   * The lower bound of the range
   * 
* * string lower_term = 2; * @return The bytes for lowerTerm. */ com.google.protobuf.ByteString getLowerTermBytes(); /** *
   * The upper bound of the range
   * 
* * string upper_term = 3; * @return The upperTerm. */ java.lang.String getUpperTerm(); /** *
   * The upper bound of the range
   * 
* * string upper_term = 3; * @return The bytes for upperTerm. */ com.google.protobuf.ByteString getUpperTermBytes(); /** *
   * Whether to include the lower bound in the range
   * 
* * bool include_lower = 4; * @return The includeLower. */ boolean getIncludeLower(); /** *
   * Whether to include the upper bound in the range
   * 
* * bool include_upper = 5; * @return The includeUpper. */ boolean getIncludeUpper(); /** *
   * Method used to rewrite the query.
   * 
* * .luceneserver.RewriteMethod rewrite = 6; * @return The enum numeric value on the wire for rewrite. */ int getRewriteValue(); /** *
   * Method used to rewrite the query.
   * 
* * .luceneserver.RewriteMethod rewrite = 6; * @return The rewrite. */ com.yelp.nrtsearch.server.grpc.RewriteMethod getRewrite(); /** *
   * Specifies the size to use for the TOP_TERMS* rewrite methods.
   * 
* * int32 rewriteTopTermsSize = 7; * @return The rewriteTopTermsSize. */ int getRewriteTopTermsSize(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy