|
| Term (const String &fld, const String &txt=EmptyString) |
| Constructs a Term with the given field and text.
|
|
virtual | ~Term () |
|
virtual String | getClassName () |
|
boost::shared_ptr< Term > | shared_from_this () |
|
String | field () |
| Returns the field of this term, an interned string. The field indicates the part of a document which this term came from.
|
|
String | text () |
| Returns the text of this term. In the case of words, this is simply the text of the word. In the case of dates and other types, this is an encoding of the object as a string.
|
|
TermPtr | createTerm (const String &text) |
| Optimized construction of new Terms by reusing same field as this Term.
|
|
virtual bool | equals (const LuceneObjectPtr &other) |
| Return whether two objects are equal.
|
|
virtual int32_t | hashCode () |
| Return hash code for this object.
|
|
virtual int32_t | compareTo (const LuceneObjectPtr &other) |
| Compares two terms, returning a negative integer if this term belongs before the argument, zero if this term is equal to the argument, and a positive integer if this term belongs after the argument.
|
|
void | set (const String &fld, const String &txt) |
|
virtual String | toString () |
| Returns a string representation of the object.
|
|
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 | ~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.
|
|
A Term represents a word from text. This is the unit of search. It is composed of two elements, the text of the word, as a string, and the name of the field that the text occurred in, an interned string.
Note that terms may represent more than words from text fields, but also things like dates, email addresses, urls, etc.
Compares two terms, returning a negative integer if this term belongs before the argument, zero if this term is equal to the argument, and a positive integer if this term belongs after the argument.
The ordering of terms is first by field, then by text.
Reimplemented from Lucene::LuceneObject.