|
| FieldSortedTermVectorMapper (TermVectorEntryComparator comparator) |
|
| FieldSortedTermVectorMapper (bool ignoringPositions, bool ignoringOffsets, TermVectorEntryComparator comparator) |
|
virtual | ~FieldSortedTermVectorMapper () |
|
virtual String | getClassName () |
|
boost::shared_ptr< FieldSortedTermVectorMapper > | shared_from_this () |
|
virtual void | map (const String &term, int32_t frequency, Collection< TermVectorOffsetInfoPtr > offsets, Collection< int32_t > positions) |
| Map the Term Vector information into your own structure.
|
|
virtual void | setExpectations (const String &field, int32_t numTerms, bool storeOffsets, bool storePositions) |
| Tell the mapper what to expect in regards to field, number of terms, offset and position storage.
|
|
MapStringCollectionTermVectorEntry | getFieldToTerms () |
| Get the mapping between fields and terms, sorted by the comparator.
|
|
TermVectorEntryComparator | getComparator () |
|
| TermVectorMapper (bool ignoringPositions=false, bool ignoringOffsets=false) |
|
virtual | ~TermVectorMapper () |
|
boost::shared_ptr< TermVectorMapper > | shared_from_this () |
|
virtual bool | isIgnoringPositions () |
| Indicate to Lucene that even if there are positions stored, this mapper is not interested in them and they can be skipped over. Derived classes should set this to true if they want to ignore positions. The default is false, meaning positions will be loaded if they are stored.
|
|
virtual bool | isIgnoringOffsets () |
|
virtual void | setDocumentNumber (int32_t documentNumber) |
| Passes down the index of the document whose term vector is currently being mapped, once for each top level call to a term vector reader.
|
|
virtual | ~LuceneObject () |
|
virtual void | initialize () |
| Called directly after instantiation to create objects that depend on this object being fully constructed.
|
|
virtual LuceneObjectPtr | clone (const LuceneObjectPtr &other=LuceneObjectPtr()) |
| Return clone of this object.
|
|
virtual int32_t | hashCode () |
| Return hash code for this object.
|
|
virtual bool | equals (const LuceneObjectPtr &other) |
| Return whether two objects are equal.
|
|
virtual int32_t | compareTo (const LuceneObjectPtr &other) |
| Compare two objects.
|
|
virtual String | toString () |
| Returns a string representation of the object.
|
|
virtual | ~LuceneSync () |
|
virtual SynchronizePtr | getSync () |
| Return this object synchronize lock.
|
|
virtual LuceneSignalPtr | getSignal () |
| Return this object signal.
|
|
virtual void | lock (int32_t timeout=0) |
| Lock this object using an optional timeout.
|
|
virtual void | unlock () |
| Unlock this object.
|
|
virtual bool | holdsLock () |
| Returns true if this object is currently locked by current thread.
|
|
virtual void | wait (int32_t timeout=0) |
| Wait for signal using an optional timeout.
|
|
virtual void | notifyAll () |
| Notify all threads waiting for signal.
|
|
For each Field, store a sorted collection of TermVectorEntry
s This is not thread-safe.