|
xapian-core
1.5.1
|
Class representing a stemming algorithm implementation. More...
#include <stem.h>
Public Member Functions | |
| StemImplementation () | |
| Default constructor. | |
| virtual | ~StemImplementation () |
| Virtual destructor. | |
| virtual std::string | operator() (const std::string &word)=0 |
| Stem the specified word. | |
| virtual bool | use_proper_noun_heuristic () const |
| Should QueryParser suppress stemming for capitalised words? | |
| virtual std::string | get_description () const =0 |
| Return a string describing this object. | |
Class representing a stemming algorithm implementation.
|
virtual |
Should QueryParser suppress stemming for capitalised words?
See QueryParser::feature_flag value FLAG_NO_PROPER_NOUN_HEURISTIC for details.
The default implementation of this method returns false.