C# 클래스 Lucene.Net.Analysis.Standard.UAX29URLEmailAnalyzer

Filters org.apache.lucene.analysis.standard.UAX29URLEmailTokenizer with StandardFilter, LowerCaseFilter and StopFilter, using a list of English stop words.

You must specify the required org.apache.lucene.util.Version compatibility when creating UAX29URLEmailAnalyzer

파일 보기 프로젝트 열기: apache/lucenenet 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
STOP_WORDS_SET CharArraySet

공개 메소드들

메소드 설명
CreateComponents ( string fieldName, TextReader reader ) : TokenStreamComponents
UAX29URLEmailAnalyzer ( LuceneVersion matchVersion ) : Lucene.Net.Analysis.Core

Builds an analyzer with the default stop words ({@link #STOP_WORDS_SET}).

UAX29URLEmailAnalyzer ( LuceneVersion matchVersion, CharArraySet stopWords ) : Lucene.Net.Analysis.Core

Builds an analyzer with the given stop words.

UAX29URLEmailAnalyzer ( LuceneVersion matchVersion, TextReader stopwords ) : Lucene.Net.Analysis.Core

Builds an analyzer with the stop words from the given reader.

메소드 상세

CreateComponents() 공개 메소드

public CreateComponents ( string fieldName, TextReader reader ) : TokenStreamComponents
fieldName string
reader System.IO.TextReader
리턴 TokenStreamComponents

UAX29URLEmailAnalyzer() 공개 메소드

Builds an analyzer with the default stop words ({@link #STOP_WORDS_SET}).
public UAX29URLEmailAnalyzer ( LuceneVersion matchVersion ) : Lucene.Net.Analysis.Core
matchVersion LuceneVersion Lucene version to match See {@link /// above}
리턴 Lucene.Net.Analysis.Core

UAX29URLEmailAnalyzer() 공개 메소드

Builds an analyzer with the given stop words.
public UAX29URLEmailAnalyzer ( LuceneVersion matchVersion, CharArraySet stopWords ) : Lucene.Net.Analysis.Core
matchVersion LuceneVersion Lucene version to match See {@link /// above}
stopWords CharArraySet stop words
리턴 Lucene.Net.Analysis.Core

UAX29URLEmailAnalyzer() 공개 메소드

Builds an analyzer with the stop words from the given reader.
public UAX29URLEmailAnalyzer ( LuceneVersion matchVersion, TextReader stopwords ) : Lucene.Net.Analysis.Core
matchVersion LuceneVersion Lucene version to match See {@link /// above}
stopwords System.IO.TextReader Reader to read stop words from
리턴 Lucene.Net.Analysis.Core

프로퍼티 상세

STOP_WORDS_SET 공개적으로 정적으로 프로퍼티

An unmodifiable set containing some common English words that are usually not useful for searching.
public static CharArraySet STOP_WORDS_SET
리턴 CharArraySet