com.yelp.nrtsearch.server.grpc.FuzzySuggesterOrBuilder 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/suggest.proto
// Protobuf Java Version: 3.25.3
package com.yelp.nrtsearch.server.grpc;
public interface FuzzySuggesterOrBuilder extends
// @@protoc_insertion_point(interface_extends:luceneserver.FuzzySuggester)
com.google.protobuf.MessageOrBuilder {
/**
*
*Index and query analyzer
*
*
* string analyzer = 1;
* @return The analyzer.
*/
java.lang.String getAnalyzer();
/**
*
*Index and query analyzer
*
*
* string analyzer = 1;
* @return The bytes for analyzer.
*/
com.google.protobuf.ByteString
getAnalyzerBytes();
/**
*
* Index Analyzer
*
*
* string indexAnalyzer = 2;
* @return The indexAnalyzer.
*/
java.lang.String getIndexAnalyzer();
/**
*
* Index Analyzer
*
*
* string indexAnalyzer = 2;
* @return The bytes for indexAnalyzer.
*/
com.google.protobuf.ByteString
getIndexAnalyzerBytes();
/**
*
* Query Analyzer
*
*
* string queryAnalyzer = 3;
* @return The queryAnalyzer.
*/
java.lang.String getQueryAnalyzer();
/**
*
* Query Analyzer
*
*
* string queryAnalyzer = 3;
* @return The bytes for queryAnalyzer.
*/
com.google.protobuf.ByteString
getQueryAnalyzerBytes();
/**
*
*Maximum number of surface forms to keep for a single analyzed form
*
*
* int32 maxSurfaceFormsPerAnalyzedForm = 4;
* @return The maxSurfaceFormsPerAnalyzedForm.
*/
int getMaxSurfaceFormsPerAnalyzedForm();
/**
*
*Maximum number of graph paths to expand from the analyzed from
*
*
* int32 maxGraphExpansions = 5;
* @return The maxGraphExpansions.
*/
int getMaxGraphExpansions();
/**
*
*True if token separators should be preserved when matching
*
*
* bool preserveSep = 6;
* @return The preserveSep.
*/
boolean getPreserveSep();
/**
*
*True if the exact match should always be returned first regardless of score
*
*
* bool exactFirst = 7;
* @return The exactFirst.
*/
boolean getExactFirst();
/**
*
*Minimum key length before edits are allowed,
*
*
* int32 minFuzzyLength = 8;
* @return The minFuzzyLength.
*/
int getMinFuzzyLength();
/**
*
*Key prefix where edits are not allowed,
*
*
* int32 nonFuzzyPrefix = 9;
* @return The nonFuzzyPrefix.
*/
int getNonFuzzyPrefix();
/**
*
*Maximum number of edits for fuzzy suggestions
*
*
* int32 maxEdits = 10;
* @return The maxEdits.
*/
int getMaxEdits();
/**
*
*Whether transpositions are allowed
*
*
* bool transpositions = 11;
* @return The transpositions.
*/
boolean getTranspositions();
/**
*
*True if all edits are measured in unicode characters, not UTF-8 bytes
*
*
* bool unicodeAware = 12;
* @return The unicodeAware.
*/
boolean getUnicodeAware();
}