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

Filters {@link StandardTokenizer} with {@link StandardFilter}, {@link LowerCaseFilter} and {@link StopFilter}, using a list of English stop words.
상속: Lucene.Net.Analysis.Analyzer
파일 보기 프로젝트 열기: apache/lucenenet 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
STOP_WORDS_SET Lucene.Net.Analysis.CharArraySet

공개 메소드들

메소드 설명
CreateComponents ( string fieldName, TextReader reader ) : TokenStreamComponents
StandardAnalyzer ( LuceneVersion matchVersion ) : System.IO

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

StandardAnalyzer ( LuceneVersion matchVersion, Lucene.Net.Analysis.CharArraySet stopWords ) : System.IO

Builds an analyzer with the given stop words.

StandardAnalyzer ( LuceneVersion matchVersion, TextReader stopwords ) : System.IO

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

메소드 상세

CreateComponents() 공개 메소드

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

StandardAnalyzer() 공개 메소드

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

StandardAnalyzer() 공개 메소드

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

StandardAnalyzer() 공개 메소드

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

프로퍼티 상세

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

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