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

com.yelp.nrtsearch.server.grpc.MatchQueryOrBuilder 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 MatchQueryOrBuilder extends
    // @@protoc_insertion_point(interface_extends:luceneserver.MatchQuery)
    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(); /** *
   * The text to query with.
   * 
* * string query = 2; * @return The query. */ java.lang.String getQuery(); /** *
   * The text to query with.
   * 
* * string query = 2; * @return The bytes for query. */ com.google.protobuf.ByteString getQueryBytes(); /** *
   * Boolean logic used to interpret text in the query. The possible values are SHOULD (default) and MUST.
   * 
* * .luceneserver.MatchOperator operator = 3; * @return The enum numeric value on the wire for operator. */ int getOperatorValue(); /** *
   * Boolean logic used to interpret text in the query. The possible values are SHOULD (default) and MUST.
   * 
* * .luceneserver.MatchOperator operator = 3; * @return The operator. */ com.yelp.nrtsearch.server.grpc.MatchOperator getOperator(); /** *
   * Minimum number of optional clauses that must match.
   * 
* * int32 minimumNumberShouldMatch = 4; * @return The minimumNumberShouldMatch. */ int getMinimumNumberShouldMatch(); /** *
   * Analyzer used to analyze the query. If not provided, the default search analyzer for the field would be used instead.
   * 
* * .luceneserver.Analyzer analyzer = 5; * @return Whether the analyzer field is set. */ boolean hasAnalyzer(); /** *
   * Analyzer used to analyze the query. If not provided, the default search analyzer for the field would be used instead.
   * 
* * .luceneserver.Analyzer analyzer = 5; * @return The analyzer. */ com.yelp.nrtsearch.server.grpc.Analyzer getAnalyzer(); /** *
   * Analyzer used to analyze the query. If not provided, the default search analyzer for the field would be used instead.
   * 
* * .luceneserver.Analyzer analyzer = 5; */ com.yelp.nrtsearch.server.grpc.AnalyzerOrBuilder getAnalyzerOrBuilder(); /** *
   * Parameters to set the fuzziness of the query
   * 
* * .luceneserver.FuzzyParams fuzzyParams = 6; * @return Whether the fuzzyParams field is set. */ boolean hasFuzzyParams(); /** *
   * Parameters to set the fuzziness of the query
   * 
* * .luceneserver.FuzzyParams fuzzyParams = 6; * @return The fuzzyParams. */ com.yelp.nrtsearch.server.grpc.FuzzyParams getFuzzyParams(); /** *
   * Parameters to set the fuzziness of the query
   * 
* * .luceneserver.FuzzyParams fuzzyParams = 6; */ com.yelp.nrtsearch.server.grpc.FuzzyParamsOrBuilder getFuzzyParamsOrBuilder(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy