public final class Document extends Object implements IndexDocument
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 or IndexReader.document(int).
| Constructor and Description |
|---|
Document()
Constructs a new document with no fields.
|
Document(StoredDocument storedDoc)
Creates a Document from StoredDocument so it that can be used e.g.
|
| Modifier and Type | Method and Description |
|---|---|
void |
add(Field field)
Adds a field to a document.
|
void |
clear()
Removes all the fields from document.
|
String |
get(String name)
Returns the string value of the field with the given name if any exist in
this document, or null.
|
BytesRef |
getBinaryValue(String name)
Returns an array of bytes for the first (or only) field that has the name
specified as the method parameter.
|
BytesRef[] |
getBinaryValues(String name)
Returns an array of byte arrays for of the fields that have the name specified
as the method parameter.
|
Field |
getField(String name)
Returns a field with the given name if any exist in this document, or
null.
|
List<Field> |
getFields()
Returns a List of all the fields in a document.
|
Field[] |
getFields(String name)
Returns an array of
IndexableFields with the given name. |
String[] |
getValues(String name)
Returns an array of values of the field specified as the method parameter.
|
Iterable<IndexableField> |
indexableFields()
Obtains all indexed fields in document
|
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.
|
Iterable<StorableField> |
storableFields()
Obtains all stored fields in document.
|
String |
toString()
Prints the fields of a document for human consumption.
|
public Document()
public Document(StoredDocument storedDoc)
public final void add(Field 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.
public final BytesRef[] getBinaryValues(String name)
name - the name of the fieldBytesRef[] of binary field valuespublic final BytesRef 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.BytesRef containing the binary field value or nullpublic final Field getField(String name)
public Field[] getFields(String name)
IndexableFields 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 fieldField[] arraypublic final List<Field> getFields()
Note that fields which are not stored are
not available in documents retrieved from the
index, e.g. IndexSearcher.doc(int) or IndexReader.document(int).
List<Field>public final String[] getValues(String name)
IntField, LongField, FloatField and DoubleField it returns the string value of the number. If you want
the actual numeric field instances back, use getFields(java.lang.String).name - the name of the fieldString[] of field valuespublic final String get(String name)
IntField, LongField, FloatField and DoubleField it returns the string value of the number. If you want
the actual numeric field instance back, use getField(java.lang.String).public final String toString()
public Iterable<IndexableField> indexableFields()
indexableFields in interface IndexDocumentpublic Iterable<StorableField> storableFields()
storableFields in interface IndexDocumentpublic void clear()
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.