com.yelp.nrtsearch.server.grpc.FuzzyInfixSuggesterOrBuilder 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 FuzzyInfixSuggesterOrBuilder extends
// @@protoc_insertion_point(interface_extends:luceneserver.FuzzyInfixSuggester)
com.google.protobuf.MessageOrBuilder {
/**
* string analyzer = 1;
* @return The analyzer.
*/
java.lang.String getAnalyzer();
/**
* 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();
/**
*
*Minimum key length before edits are allowed,
*
*
* int32 minFuzzyLength = 4;
* @return The minFuzzyLength.
*/
int getMinFuzzyLength();
/**
*
*Key prefix where edits are not allowed,
*
*
* int32 nonFuzzyPrefix = 5;
* @return The nonFuzzyPrefix.
*/
int getNonFuzzyPrefix();
/**
*
*Maximum number of edits for fuzzy suggestions
*
*
* int32 maxEdits = 6;
* @return The maxEdits.
*/
int getMaxEdits();
/**
*
*Whether transpositions are allowed
*
*
* bool transpositions = 7;
* @return The transpositions.
*/
boolean getTranspositions();
/**
*
*True if all edits are measured in unicode characters, not UTF-8 bytes
*
*
* bool unicodeAware = 8;
* @return The unicodeAware.
*/
boolean getUnicodeAware();
}