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

com.yelp.nrtsearch.server.grpc.MatchPhrasePrefixQueryOrBuilder 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 MatchPhrasePrefixQueryOrBuilder extends
    // @@protoc_insertion_point(interface_extends:luceneserver.MatchPhrasePrefixQuery)
    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(); /** *
   * Edit distance between respective positions of tokens generated by analyzing this query and the positions of terms in a document.
   * 
* * int32 slop = 3; * @return The slop. */ int getSlop(); /** *
   * Analyzer used to analyze the query. If not provided, the default search analyzer for the field would be used instead.
   * 
* * .luceneserver.Analyzer analyzer = 4; * @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 = 4; * @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 = 4; */ com.yelp.nrtsearch.server.grpc.AnalyzerOrBuilder getAnalyzerOrBuilder(); /** *
   * Maximum number of terms to which the last provided term of the query value will expand. Defaults to 50.
   * 
* * int32 max_expansions = 5; * @return The maxExpansions. */ int getMaxExpansions(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy