Lucene++ - a full-featured, c++ search engine
API Documentation
Documents are the unit of indexing and search. More...
#include <Document.h>
Public Member Functions | |
Document () | |
Constructs a new document with no fields. | |
virtual | ~Document () |
virtual String | getClassName () |
boost::shared_ptr< Document > | shared_from_this () |
void | setBoost (double boost) |
Sets a boost factor for hits on any field of this document. This value will be multiplied into the score of all hits on this document. | |
double | getBoost () |
Returns, at indexing time, the boost factor as set by setBoost(double) . | |
void | add (const FieldablePtr &field) |
Adds a field to a document. Several fields may be added with the same name. In this case, if the fields are indexed, their text is treated as though appended for the purposes of search. | |
void | removeField (const String &name) |
Removes field with the specified name from the document. If multiple fields exist with this name, this method removes the first field that has been added. If there is no field with the specified name, the document remains unchanged. | |
void | removeFields (const String &name) |
Removes all fields with the given name from the document. If there is no field with the specified name, the document remains unchanged. | |
FieldPtr | getField (const String &name) |
Returns a field with the given name if any exist in this document, or null. If multiple fields exists with this name, this method returns the first value added. Do not use this method with lazy loaded fields. | |
FieldablePtr | getFieldable (const String &name) |
Returns a field with the given name if any exist in this document, or null. If multiple fields exists with this name, this method returns the first value added. | |
String | get (const String &name) |
Returns the string value of the field with the given name if any exist in this document, or null. If multiple fields exist with this name, this method returns the first value added. If only binary fields with this name exist, returns null. | |
Collection< FieldablePtr > | getFields () |
Returns a List of all the fields in a document. | |
Collection< FieldPtr > | getFields (const String &name) |
Returns an array of Field s with the given name. Do not use with lazy loaded fields. This method returns an empty array when there are no matching fields. It never returns null. | |
Collection< FieldablePtr > | getFieldables (const String &name) |
Returns an array of Fieldable s with the given name. This method returns an empty array when there are no matching fields. It never returns null. | |
Collection< String > | getValues (const String &name) |
Returns an array of values of the field specified as the method parameter. This method returns an empty array when there are no matching fields. It never returns null. | |
Collection< ByteArray > | getBinaryValues (const String &name) |
Returns an array of byte arrays for of the fields that have the name specified as the method parameter. This method returns an empty array when there are no matching fields. It never returns null. | |
ByteArray | getBinaryValue (const String &name) |
Returns an array of bytes for the first (or only) field that has the name specified as the method parameter. This method will return null if no binary fields with the specified name are available. There may be non-binary fields with the same name. | |
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 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 | ~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. | |
Static Public Member Functions | |
static String | _getClassName () |
Protected Attributes | |
Collection< FieldablePtr > | fields |
double | boost |
![]() | |
SynchronizePtr | objectLock |
LuceneSignalPtr | objectSignal |
Additional Inherited Members | |
![]() | |
LuceneObject () | |
Documents are the unit of indexing and search.
A Document is a set of fields. Each field has a name and a textual value. A field may be stored
with the document, in which case it is returned with search hits on the document. Thus each document should typically contain one or more stored fields which uniquely identify it.
Note that fields which are not stored
are not available in documents retrieved from the index, eg. with ScoreDoc#doc
, Searcher#doc(int)
or IndexReader#document(int)
.
Lucene::Document::Document | ( | ) |
Constructs a new document with no fields.
|
virtual |
|
inlinestatic |
void Lucene::Document::add | ( | const FieldablePtr & | field | ) |
Adds a field to a document. Several fields may be added with the same name. In this case, if the fields are indexed, their text is treated as though appended for the purposes of search.
Note that add like the removeField(s) methods only makes sense prior to adding a document to an index. These methods cannot be used to change the content of an existing index! In order to achieve this, a document has to be deleted from an index and a new changed version of that document has to be added.
String Lucene::Document::get | ( | const String & | name | ) |
Returns the string value of the field with the given name if any exist in this document, or null. If multiple fields exist with this name, this method returns the first value added. If only binary fields with this name exist, returns null.
ByteArray Lucene::Document::getBinaryValue | ( | const String & | name | ) |
Returns an array of bytes for the first (or only) field that has the name specified as the method parameter. This method will return null if no binary fields with the specified name are available. There may be non-binary fields with the same name.
name | the name of the field. |
Collection< ByteArray > Lucene::Document::getBinaryValues | ( | const String & | name | ) |
Returns an array of byte arrays for of the fields that have the name specified as the method parameter. This method returns an empty array when there are no matching fields. It never returns null.
name | the name of the field |
double Lucene::Document::getBoost | ( | ) |
Returns, at indexing time, the boost factor as set by setBoost(double)
.
Note that once a document is indexed this value is no longer available from the index. At search time, for retrieved documents, this method always returns 1. This however does not mean that the boost value set at indexing time was ignored - it was just combined with other indexing time factors and stored elsewhere, for better indexing and search performance. (For more information see the "norm(t,d)" part of the scoring formula in Similarity
.)
|
inlinevirtual |
FieldPtr Lucene::Document::getField | ( | const String & | name | ) |
Returns a field with the given name if any exist in this document, or null. If multiple fields exists with this name, this method returns the first value added. Do not use this method with lazy loaded fields.
FieldablePtr Lucene::Document::getFieldable | ( | const String & | name | ) |
Returns a field with the given name if any exist in this document, or null. If multiple fields exists with this name, this method returns the first value added.
Collection< FieldablePtr > Lucene::Document::getFieldables | ( | const String & | name | ) |
Collection< FieldablePtr > Lucene::Document::getFields | ( | ) |
Returns a List of all the fields in a document.
Note that fields which are not stored
are not available in documents retrieved from the index, eg. Searcher#doc(int)
or IndexReader#document(int)
.
Collection< FieldPtr > Lucene::Document::getFields | ( | const String & | name | ) |
Collection< String > Lucene::Document::getValues | ( | const String & | name | ) |
Returns an array of values of the field specified as the method parameter. This method returns an empty array when there are no matching fields. It never returns null.
name | the name of the field |
void Lucene::Document::removeField | ( | const String & | name | ) |
Removes field with the specified name from the document. If multiple fields exist with this name, this method removes the first field that has been added. If there is no field with the specified name, the document remains unchanged.
Note that the removeField(s) methods like the add method only make sense prior to adding a document to an index. These methods cannot be used to change the content of an existing index! In order to achieve this, a document has to be deleted from an index and a new changed version of that document has to be added.
void Lucene::Document::removeFields | ( | const String & | name | ) |
Removes all fields with the given name from the document. If there is no field with the specified name, the document remains unchanged.
Note that the removeField(s) methods like the add method only make sense prior to adding a document to an index. These methods cannot be used to change the content of an existing index! In order to achieve this, a document has to be deleted from an index and a new changed version of that document has to be added.
void Lucene::Document::setBoost | ( | double | boost | ) |
Sets a boost factor for hits on any field of this document. This value will be multiplied into the score of all hits on this document.
The default value is 1.0.
Values are multiplied into the value of Fieldable#getBoost()
of each field in this document. Thus, this method in effect sets a default boost for the fields of this document.
|
inline |
|
virtual |
Returns a string representation of the object.
Reimplemented from Lucene::LuceneObject.
|
protected |
|
protected |