CLucene - a full-featured, c++ search engine
API Documentation
#include <StandardAnalyzer.h>
Public Member Functions | |
StandardAnalyzer () | |
Builds an analyzer. | |
StandardAnalyzer (const TCHAR **stopWords) | |
Builds an analyzer with the given stop words. | |
StandardAnalyzer (const char *stopwordsFile, const char *enc=NULL) | |
Builds an analyzer with the stop words from the given file. | |
StandardAnalyzer (lucene::util::Reader *stopwordsReader, const bool _bDeleteReader=false) | |
Builds an analyzer with the stop words from the given reader. | |
~StandardAnalyzer () | |
TokenStream * | tokenStream (const TCHAR *fieldName, lucene::util::Reader *reader) |
Constructs a StandardTokenizer filtered by a StandardFilter, a LowerCaseFilter and a StopFilter. |
lucene::analysis::standard::StandardAnalyzer::StandardAnalyzer | ( | ) |
Builds an analyzer.
lucene::analysis::standard::StandardAnalyzer::StandardAnalyzer | ( | const TCHAR ** | stopWords | ) |
Builds an analyzer with the given stop words.
lucene::analysis::standard::StandardAnalyzer::StandardAnalyzer | ( | const char * | stopwordsFile, | |
const char * | enc = NULL | |||
) |
Builds an analyzer with the stop words from the given file.
lucene::analysis::standard::StandardAnalyzer::StandardAnalyzer | ( | lucene::util::Reader * | stopwordsReader, | |
const bool | _bDeleteReader = false | |||
) |
Builds an analyzer with the stop words from the given reader.
lucene::analysis::standard::StandardAnalyzer::~StandardAnalyzer | ( | ) |
TokenStream* lucene::analysis::standard::StandardAnalyzer::tokenStream | ( | const TCHAR * | fieldName, | |
lucene::util::Reader * | reader | |||
) | [virtual] |
Constructs a StandardTokenizer filtered by a StandardFilter, a LowerCaseFilter and a StopFilter.
Implements lucene::analysis::Analyzer.