Lucene++ - a full-featured, c++ search engine
API Documentation
The TermVectorOffsetInfo class holds information pertaining to a Term in a TermPositionVector's offset information. This offset information is the character offset as set during the Analysis phase (and thus may not be the actual offset in the original content). More...
#include <TermVectorOffsetInfo.h>
Inheritance diagram for Lucene::TermVectorOffsetInfo:Public Member Functions | |
| TermVectorOffsetInfo (int32_t startOffset=0, int32_t endOffset=0) | |
| virtual | ~TermVectorOffsetInfo () |
| virtual String | getClassName () |
| boost::shared_ptr< TermVectorOffsetInfo > | shared_from_this () |
| int32_t | getEndOffset () |
| The accessor for the ending offset for the term. More... | |
| void | setEndOffset (int32_t endOffset) |
| int32_t | getStartOffset () |
| The accessor for the starting offset of the term. More... | |
| void | setStartOffset (int32_t startOffset) |
| virtual bool | equals (const LuceneObjectPtr &other) |
| Two TermVectorOffsetInfos are equals if both the start and end offsets are the same. More... | |
| virtual int32_t | hashCode () |
| Return hash code for this object. More... | |
Public Member Functions inherited from Lucene::LuceneObject | |
| virtual | ~LuceneObject () |
| virtual void | initialize () |
| Called directly after instantiation to create objects that depend on this object being fully constructed. More... | |
| virtual LuceneObjectPtr | clone (const LuceneObjectPtr &other=LuceneObjectPtr()) |
| Return clone of this object. More... | |
| virtual int32_t | compareTo (const LuceneObjectPtr &other) |
| Compare two objects. More... | |
| virtual String | toString () |
| Returns a string representation of the object. More... | |
Public Member Functions inherited from Lucene::LuceneSync | |
| 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... | |
Static Public Member Functions | |
| static String | _getClassName () |
| static const Collection< TermVectorOffsetInfoPtr > | EMPTY_OFFSET_INFO () |
| Convenience declaration when creating a TermPositionVector that stores only position information. More... | |
Protected Attributes | |
| int32_t | startOffset |
| int32_t | endOffset |
Protected Attributes inherited from Lucene::LuceneSync | |
| SynchronizePtr | objectLock |
| LuceneSignalPtr | objectSignal |
Additional Inherited Members | |
Protected Member Functions inherited from Lucene::LuceneObject | |
| LuceneObject () | |
The TermVectorOffsetInfo class holds information pertaining to a Term in a TermPositionVector's offset information. This offset information is the character offset as set during the Analysis phase (and thus may not be the actual offset in the original content).
| Lucene::TermVectorOffsetInfo::TermVectorOffsetInfo | ( | int32_t | startOffset = 0, |
| int32_t | endOffset = 0 |
||
| ) |
|
virtual |
|
inlinestatic |
|
static |
Convenience declaration when creating a TermPositionVector that stores only position information.
|
virtual |
Two TermVectorOffsetInfos are equals if both the start and end offsets are the same.
Reimplemented from Lucene::LuceneObject.
|
inlinevirtual |
| int32_t Lucene::TermVectorOffsetInfo::getEndOffset | ( | ) |
The accessor for the ending offset for the term.
| int32_t Lucene::TermVectorOffsetInfo::getStartOffset | ( | ) |
The accessor for the starting offset of the term.
|
virtual |
Return hash code for this object.
Reimplemented from Lucene::LuceneObject.
| void Lucene::TermVectorOffsetInfo::setEndOffset | ( | int32_t | endOffset | ) |
| void Lucene::TermVectorOffsetInfo::setStartOffset | ( | int32_t | startOffset | ) |
|
inline |
|
protected |
|
protected |