CLucene - a full-featured, c++ search engine
API Documentation
Filters LetterTokenizer with LowerCaseFilter and StopFilter. More...
#include <Analyzers.h>
Public Member Functions | |
| StopAnalyzer () | |
| Builds an analyzer which removes words in ENGLISH_STOP_WORDS. | |
| ~StopAnalyzer () | |
| StopAnalyzer (const TCHAR **stopWords) | |
| Builds an analyzer which removes words in the provided array. | |
| TokenStream * | tokenStream (const TCHAR *fieldName, lucene::util::Reader *reader) |
| Filters LowerCaseTokenizer with StopFilter. | |
Static Public Attributes | |
| static const TCHAR * | ENGLISH_STOP_WORDS [] |
| An array containing some common English words that are not usually useful for searching. | |
Filters LetterTokenizer with LowerCaseFilter and StopFilter.
| lucene::analysis::StopAnalyzer::StopAnalyzer | ( | ) |
Builds an analyzer which removes words in ENGLISH_STOP_WORDS.
| lucene::analysis::StopAnalyzer::~StopAnalyzer | ( | ) |
| lucene::analysis::StopAnalyzer::StopAnalyzer | ( | const TCHAR ** | stopWords | ) |
Builds an analyzer which removes words in the provided array.
| TokenStream* lucene::analysis::StopAnalyzer::tokenStream | ( | const TCHAR * | fieldName, | |
| lucene::util::Reader * | reader | |||
| ) | [virtual] |
Filters LowerCaseTokenizer with StopFilter.
Implements lucene::analysis::Analyzer.
const TCHAR* lucene::analysis::StopAnalyzer::ENGLISH_STOP_WORDS[] [static] |
An array containing some common English words that are not usually useful for searching.