The java org.apache.lucene.document.Document class is a data structure used in the Apache Lucene search library. It represents a set of fields that can be indexed and searched within a Lucene index. A document is composed of multiple fields, each of which has a name and a value. These fields can store different types of data such as textual content, numerical values, or dates. The Document class provides methods for adding, retrieving, and manipulating fields, making it a fundamental building block for indexing and searching documents using Lucene.
Java Document - 30 examples found. These are the top rated real world Java examples of org.apache.lucene.document.Document extracted from open source projects. You can rate examples to help us improve the quality of examples.