C# Класс Lucene.Net.Analysis.Miscellaneous.CodepointCountFilter

Removes words that are too long or too short from the stream.

Note: Length is calculated as the number of Unicode codepoints.

Наследование: Lucene.Net.Analysis.Util.FilteringTokenFilter
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
CodepointCountFilter ( LuceneVersion version, TokenStream @in, int min, int max ) : Lucene.Net.Analysis.Tokenattributes

Create a new CodepointCountFilter. This will filter out tokens whose CharTermAttribute is either too short (Character#CodePointCount(char[], int, int) < min) or too long (Character#codePointCount(char[], int, int) > max).

Защищенные методы

Метод Описание
Accept ( ) : bool

Описание методов

Accept() защищенный Метод

protected Accept ( ) : bool
Результат bool

CodepointCountFilter() публичный Метод

Create a new CodepointCountFilter. This will filter out tokens whose CharTermAttribute is either too short (Character#CodePointCount(char[], int, int) < min) or too long (Character#codePointCount(char[], int, int) > max).
public CodepointCountFilter ( LuceneVersion version, TokenStream @in, int min, int max ) : Lucene.Net.Analysis.Tokenattributes
version LuceneVersion the Lucene match version
@in TokenStream
min int the minimum length
max int the maximum length
Результат Lucene.Net.Analysis.Tokenattributes