mirror of https://github.com/apache/lucene.git
LUCENE-1701: Add some missing javadocs
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@787786 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f03d77b558
commit
75a11ef754
|
@ -40,8 +40,10 @@ package also provides utilities for working with {@link org.apache.lucene.docume
|
|||
take a look at the Lucene <a href="../../../../../../gettingstarted.html" target="top">demo</a> and the associated source code
|
||||
for extracting content from HTML.
|
||||
</p>
|
||||
<p>The {@link org.apache.lucene.document.DateTools} and {@link org.apache.lucene.document.NumberTools} classes are utility
|
||||
classes to make dates, times and longs searchable (remember, Lucene only searches text).</p>
|
||||
<p>The {@link org.apache.lucene.document.DateTools} is a utility class to make dates and times searchable
|
||||
(remember, Lucene only searches text). {@link org.apache.lucene.document.NumericField} is a special helper class
|
||||
to simplify indexing of numeric values (and also dates) for fast range range queries with {@link org.apache.lucene.search.NumericRangeQuery}
|
||||
(using a special sortable string representation of numeric values).</p>
|
||||
<p>The {@link org.apache.lucene.document.FieldSelector} class provides a mechanism to tell Lucene how to load Documents from
|
||||
storage. If no FieldSelector is used, all Fieldables on a Document will be loaded. As an example of the FieldSelector usage, consider
|
||||
the common use case of
|
||||
|
|
Loading…
Reference in New Issue