public final class Document extends Object implements Serializable
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, e.g. with ScoreDoc.doc
, Searcher.doc(int)
or IndexReader.document(int)
.
Constructor and Description |
---|
Document()
Constructs a new document with no fields.
|
Modifier and Type | Method and Description |
---|---|
void |
add(Fieldable field)
Adds a field to a document.
|
String |
get(String name)
Returns the string value of the field with the given name if any exist in
this document, or null.
|
byte[] |
getBinaryValue(String name)
Returns an array of bytes for the first (or only) field that has the name
specified as the method parameter.
|
byte[][] |
getBinaryValues(String name)
Returns an array of byte arrays for of the fields that have the name specified
as the method parameter.
|
float |
getBoost()
Returns, at indexing time, the boost factor as set by
setBoost(float) . |
Field |
getField(String name)
Deprecated.
use
getFieldable(java.lang.String) instead and cast depending on
data type. |
Fieldable |
getFieldable(String name)
Returns a field with the given name if any exist in this document, or
null.
|
Fieldable[] |
getFieldables(String name)
Returns an array of
Fieldable s with the given name. |
List<Fieldable> |
getFields()
Returns a List of all the fields in a document.
|
Field[] |
getFields(String name)
Deprecated.
use
getFieldable(java.lang.String) instead and cast depending on
data type. |
String[] |
getValues(String name)
Returns an array of values of the field specified as the method parameter.
|
void |
removeField(String name)
Removes field with the specified name from the document.
|
void |
removeFields(String name)
Removes all fields with the given name from the document.
|
void |
setBoost(float boost)
Sets a boost factor for hits on any field of this document.
|
String |
toString()
Prints the fields of a document for human consumption.
|
public void setBoost(float boost)
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.
Fieldable.setBoost(float)
public float getBoost()
setBoost(float)
.
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
.)
setBoost(float)
public final void add(Fieldable 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.
public final void removeField(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.
public final void removeFields(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.
@Deprecated public final Field getField(String name)
getFieldable(java.lang.String)
instead and cast depending on
data type.NumericField
.ClassCastException
- if you try to retrieve a numerical or
lazy loaded field.public Fieldable getFieldable(String name)
public final String get(String name)
NumericField
it returns the string value of the number. If you want
the actual NumericField
instance back, use getFieldable(java.lang.String)
.public final List<Fieldable> getFields()
Note that fields which are not stored
are
not available in documents retrieved from the
index, e.g. Searcher.doc(int)
or IndexReader.document(int)
.
@Deprecated public final Field[] getFields(String name)
getFieldable(java.lang.String)
instead and cast depending on
data type.Field
s with the given name.
This method returns an empty array when there are no
matching fields. It never returns null.
Do not use this method with lazy loaded fields or NumericField
.name
- the name of the fieldField[]
arrayClassCastException
- if you try to retrieve a numerical or
lazy loaded field.public Fieldable[] getFieldables(String name)
Fieldable
s with the given name.
This method returns an empty array when there are no
matching fields. It never returns null.name
- the name of the fieldFieldable[]
arraypublic final String[] getValues(String name)
NumericField
s it returns the string value of the number. If you want
the actual NumericField
instances back, use getFieldables(java.lang.String)
.name
- the name of the fieldString[]
of field valuespublic final byte[][] getBinaryValues(String name)
name
- the name of the fieldbyte[][]
of binary field valuespublic final byte[] getBinaryValue(String name)
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.byte[]
containing the binary field value or null