Class Document
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 (Is
Note that fields which are not Is
Inheritance
Inherited Members
Namespace: Lucene.Net.Documents
Assembly: Lucene.Net.dll
Syntax
public sealed class Document : IEnumerable<IIndexableField>, IEnumerable
Constructors
| Improve this Doc View SourceDocument()
Constructs a new document with no fields.
Declaration
public Document()
Properties
| Improve this Doc View SourceFields
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, e.g. Doc(Int32) or Document(Int32).
Declaration
public IList<IIndexableField> Fields { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceAdd(IIndexableField)
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 Remove
Declaration
public void Add(IIndexableField field)
Parameters
Type | Name | Description |
---|---|---|
IIndexable |
field |
Get(String)
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
.
For Int32Field, Int64Field,
Single
Declaration
public string Get(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name |
Returns
Type | Description |
---|---|
System. |
GetBinaryValue(String)
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.
Declaration
public BytesRef GetBinaryValue(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | the name of the field. |
Returns
| Improve this Doc View SourceGetBinaryValues(String)
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
.
Declaration
public BytesRef[] GetBinaryValues(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | the name of the field |
Returns
Type | Description |
---|---|
Bytes |
a Bytes |
GetEnumerator()
Declaration
public IEnumerator<IIndexableField> GetEnumerator()
Returns
Type | Description |
---|---|
System. |
GetField(String)
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.
Declaration
public IIndexableField GetField(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name |
Returns
Type | Description |
---|---|
IIndexable |
GetFields(String)
Returns an array of IIndexablenull
.
Declaration
public IIndexableField[] GetFields(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | the name of the field |
Returns
Type | Description |
---|---|
IIndexable |
a Indexable |
GetValues(String)
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
.
For Int32Field, Int64Field,
Single
Declaration
public string[] GetValues(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | the name of the field |
Returns
Type | Description |
---|---|
System. |
a string[] of field values |
RemoveField(String)
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 Remove
Declaration
public void RemoveField(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name |
RemoveFields(String)
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 Remove
Declaration
public void RemoveFields(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name |
ToString()
Prints the fields of a document for human consumption.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System. |
Overrides
Explicit Interface Implementations
| Improve this Doc View SourceIEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System. |