|
| LowerCaseTokenizer (ReaderPtr input) |
| Construct a new LowerCaseTokenizer. More...
|
|
| LowerCaseTokenizer (AttributeSourcePtr source, ReaderPtr input) |
| Construct a new LowerCaseTokenizer using a given AttributeSource. More...
|
|
| LowerCaseTokenizer (AttributeFactoryPtr factory, ReaderPtr input) |
| Construct a new LowerCaseTokenizer using a given AttributeFactory. More...
|
|
virtual | ~LowerCaseTokenizer () |
|
virtual String | getClassName () |
|
boost::shared_ptr
< LowerCaseTokenizer > | shared_from_this () |
|
virtual wchar_t | normalize (wchar_t c) |
| Converts char to lower case CharFolder::toLower<wchar_t>. More...
|
|
| LetterTokenizer (ReaderPtr input) |
| Construct a new LetterTokenizer. More...
|
|
| LetterTokenizer (AttributeSourcePtr source, ReaderPtr input) |
| Construct a new LetterTokenizer using a given AttributeSource. More...
|
|
| LetterTokenizer (AttributeFactoryPtr factory, ReaderPtr input) |
| Construct a new LetterTokenizer using a given AttributeFactory. More...
|
|
virtual | ~LetterTokenizer () |
|
boost::shared_ptr
< LetterTokenizer > | shared_from_this () |
|
virtual bool | isTokenChar (wchar_t c) |
| Collects only characters which satisfy UnicodeUtil::isAlpha(c). More...
|
|
| CharTokenizer (ReaderPtr input) |
|
| CharTokenizer (AttributeSourcePtr source, ReaderPtr input) |
|
| CharTokenizer (AttributeFactoryPtr factory, ReaderPtr input) |
|
virtual | ~CharTokenizer () |
|
boost::shared_ptr< CharTokenizer > | shared_from_this () |
|
virtual bool | incrementToken () |
| Consumers (ie., IndexWriter) use this method to advance the stream to the next token. Implementing classes must implement this method and update the appropriate Attributes with the attributes of the next token. More...
|
|
virtual void | end () |
| This method is called by the consumer after the last token has been consumed, after incrementToken() returned false (using the new TokenStream API). Streams implementing the old API should upgrade to use this feature. More...
|
|
virtual void | reset (ReaderPtr input) |
| Reset the tokenizer to a new reader. Typically, an analyzer (in its reusableTokenStream method) will use this to re-use a previously created tokenizer. More...
|
|
virtual | ~Tokenizer () |
|
boost::shared_ptr< Tokenizer > | shared_from_this () |
|
virtual void | close () |
| By default, closes the input Reader. More...
|
|
virtual int32_t | correctOffset (int32_t currentOff) |
| Return the corrected offset. If input is a CharStream subclass this method calls CharStream#correctOffset, else returns currentOff. More...
|
|
virtual | ~TokenStream () |
|
boost::shared_ptr< TokenStream > | shared_from_this () |
|
virtual void | reset () |
| Resets this stream to the beginning. This is an optional operation, so subclasses may or may not implement this method. reset() is not needed for the standard indexing process. However, if the tokens of a TokenStream are intended to be consumed more than once, it is necessary to implement reset(). Note that if your TokenStream caches tokens and feeds them back again after a reset, it is imperative that you clone the tokens when you store them away (on the first pass) as well as when you return them (on future passes after reset()). More...
|
|
| AttributeSource () |
| An AttributeSource using the default attribute factory DefaultAttributeFactory. More...
|
|
| AttributeSource (AttributeSourcePtr input) |
| An AttributeSource that uses the same attributes as the supplied one. More...
|
|
| AttributeSource (AttributeFactoryPtr factory) |
| An AttributeSource using the supplied AttributeFactory for creating new Attribute instances. More...
|
|
virtual | ~AttributeSource () |
|
boost::shared_ptr
< AttributeSource > | shared_from_this () |
|
AttributeFactoryPtr | getAttributeFactory () |
| returns the used AttributeFactory. More...
|
|
template<class ATTR > |
boost::shared_ptr< ATTR > | addAttribute () |
| This method first checks if an instance of that class is already in this AttributeSource and returns it. Otherwise a new instance is created, added to this AttributeSource and returned. More...
|
|
void | addAttribute (const String &className, AttributePtr attrImpl) |
| Adds a custom Attribute instance. More...
|
|
bool | hasAttributes () |
| Returns true if this AttributeSource has any attributes. More...
|
|
template<class ATTR > |
bool | hasAttribute () |
| Returns true, if this AttributeSource contains the passed-in Attribute. More...
|
|
template<class ATTR > |
boost::shared_ptr< ATTR > | getAttribute () |
| Returns the instance of the passed in Attribute contained in this AttributeSource. More...
|
|
void | clearAttributes () |
| Resets all Attributes in this AttributeSource by calling AttributeImpl#clear() on each Attribute implementation. More...
|
|
AttributeSourceStatePtr | captureState () |
| Captures the state of all Attributes. The return value can be passed to restoreState to restore the state of this or another AttributeSource. More...
|
|
void | restoreState (AttributeSourceStatePtr state) |
| Restores this state by copying the values of all attribute implementations that this state contains into the attributes implementations of the targetStream. The targetStream must contain a corresponding instance for each argument contained in this state (eg. it is not possible to restore the state of an AttributeSource containing a TermAttribute into a AttributeSource using a Token instance as implementation). More...
|
|
virtual int32_t | hashCode () |
| Return hash code for this object. More...
|
|
virtual bool | equals (LuceneObjectPtr other) |
| Return whether two objects are equal. More...
|
|
virtual String | toString () |
| Returns a string representation of the object. More...
|
|
AttributeSourcePtr | cloneAttributes () |
| Performs a clone of all AttributeImpl instances returned in a new AttributeSource instance. This method can be used to eg. create another TokenStream with exactly the same attributes (using AttributeSource(AttributeSource)) More...
|
|
Collection< AttributePtr > | getAttributes () |
| Return a vector of attributes based on currentState. More...
|
|
virtual | ~LuceneObject () |
|
virtual void | initialize () |
| Called directly after instantiation to create objects that depend on this object being fully constructed. More...
|
|
virtual LuceneObjectPtr | clone (LuceneObjectPtr other=LuceneObjectPtr()) |
| Return clone of this object. More...
|
|
virtual int32_t | compareTo (LuceneObjectPtr other) |
| Compare two objects. More...
|
|
virtual | ~LuceneSync () |
|
virtual SynchronizePtr | getSync () |
| Return this object synchronize lock. More...
|
|
virtual LuceneSignalPtr | getSignal () |
| Return this object signal. More...
|
|
virtual void | lock (int32_t timeout=0) |
| Lock this object using an optional timeout. More...
|
|
virtual void | unlock () |
| Unlock this object. More...
|
|
virtual bool | holdsLock () |
| Returns true if this object is currently locked by current thread. More...
|
|
virtual void | wait (int32_t timeout=0) |
| Wait for signal using an optional timeout. More...
|
|
virtual void | notifyAll () |
| Notify all threads waiting for signal. More...
|
|
LowerCaseTokenizer performs the function of LetterTokenizer and LowerCaseFilter together. It divides text at non-letters and converts them to lower case. While it is functionally equivalent to the combination of LetterTokenizer and LowerCaseFilter, there is a performance advantage to doing the two tasks at once, hence this (redundant) implementation.
Note: this does a decent job for most European languages, but does a terrible job for some Asian languages, where words are not separated by spaces.