class documentation

class SearchRomanian(SearchLanguage):

View In Hierarchy

Undocumented

Method init Initialize the class with the options the user has given.
Method stem This method implements stemming algorithm of the Python version.
Class Variable js​_stemmer​_rawcode Undocumented
Class Variable lang Undocumented
Class Variable language​_name Undocumented
Class Variable stopwords Undocumented
Instance Variable stemmer Undocumented

Inherited from SearchLanguage:

Method __init__ Undocumented
Method split This method splits a sentence into words. Default splitter splits input at white spaces, which should be enough for most languages except CJK languages.
Method word​_filter Return true if the target word should be registered in the search index. This method is called after stemming.
Class Variable ​_word​_re Undocumented
Class Variable js​_splitter​_code Undocumented
Class Variable js​_stemmer​_code Undocumented
Instance Variable options Undocumented
def init(self, options):
Initialize the class with the options the user has given.
Parameters
options:DictUndocumented
def stem(self, word):

This method implements stemming algorithm of the Python version.

Default implementation does nothing. You should implement this if the language has any stemming rules.

This class is used to preprocess search words before registering them in the search index. The stemming of the Python version and the JS version (given in the js_stemmer_code attribute) must be compatible.

Parameters
word:strUndocumented
Returns
strUndocumented
js_stemmer_rawcode: str =
lang: str =

Undocumented

language_name: str =
stopwords: Set[str] =
stemmer =

Undocumented