C# 클래스 Lucene.Net.Analysis.Core.StopAnalyzer

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

공개 프로퍼티들

프로퍼티 타입 설명
ENGLISH_STOP_WORDS_SET CharArraySet

공개 메소드들

메소드 설명
CreateComponents ( string fieldName, TextReader reader ) : Analyzer.TokenStreamComponents

Creates Analyzer.TokenStreamComponents used to tokenize all the text in the provided TextReader.

StopAnalyzer ( LuceneVersion matchVersion ) : System.Collections.Generic

Builds an analyzer which removes words in #ENGLISH_STOP_WORDS_SET.

StopAnalyzer ( LuceneVersion matchVersion, CharArraySet stopWords ) : System.Collections.Generic

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

StopAnalyzer ( LuceneVersion matchVersion, FileInfo stopwordsFile ) : System.Collections.Generic

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

StopAnalyzer ( LuceneVersion matchVersion, TextReader stopwords ) : System.Collections.Generic

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

비공개 메소드들

메소드 설명
StopAnalyzer ( ) : System.Collections.Generic

메소드 상세

CreateComponents() 공개 메소드

Creates Analyzer.TokenStreamComponents used to tokenize all the text in the provided TextReader.
public CreateComponents ( string fieldName, TextReader reader ) : Analyzer.TokenStreamComponents
fieldName string
reader System.IO.TextReader
리턴 Analyzer.TokenStreamComponents

StopAnalyzer() 공개 메소드

Builds an analyzer which removes words in #ENGLISH_STOP_WORDS_SET.
public StopAnalyzer ( LuceneVersion matchVersion ) : System.Collections.Generic
matchVersion LuceneVersion See above
리턴 System.Collections.Generic

StopAnalyzer() 공개 메소드

Builds an analyzer with the stop words from the given set.
public StopAnalyzer ( LuceneVersion matchVersion, CharArraySet stopWords ) : System.Collections.Generic
matchVersion LuceneVersion See above
stopWords CharArraySet Set of stop words
리턴 System.Collections.Generic

StopAnalyzer() 공개 메소드

Builds an analyzer with the stop words from the given file.
public StopAnalyzer ( LuceneVersion matchVersion, FileInfo stopwordsFile ) : System.Collections.Generic
matchVersion LuceneVersion See above
stopwordsFile System.IO.FileInfo File to load stop words from
리턴 System.Collections.Generic

StopAnalyzer() 공개 메소드

Builds an analyzer with the stop words from the given reader.
public StopAnalyzer ( LuceneVersion matchVersion, TextReader stopwords ) : System.Collections.Generic
matchVersion LuceneVersion See above
stopwords System.IO.TextReader Reader to load stop words from
리턴 System.Collections.Generic

프로퍼티 상세

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

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