mirror of https://github.com/apache/lucene.git
LUCENE-1900: Improve Searchable Javadoc
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@812963 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c5c363e540
commit
8f96a290b8
|
@ -851,6 +851,9 @@ Documentation
|
|||
* LUCENE-1898: Switch changes to use bullets rather than numbers and
|
||||
update changes-to-html script to handle the new format.
|
||||
(Steven Rowe, Mark Miller)
|
||||
|
||||
* LUCENE-1900: Improve Searchable Javadoc.
|
||||
(Nadav Har'El, Doron Cohen, Marvin Humphrey, Mark Miller)
|
||||
|
||||
Build
|
||||
|
||||
|
|
|
@ -92,7 +92,7 @@ public interface Searchable {
|
|||
void close() throws IOException;
|
||||
|
||||
/** Expert: Returns the number of documents containing <code>term</code>.
|
||||
* Called by search code to compute term weights.
|
||||
*
|
||||
* @see org.apache.lucene.index.IndexReader#docFreq(Term)
|
||||
*/
|
||||
int docFreq(Term term) throws IOException;
|
||||
|
@ -104,7 +104,7 @@ public interface Searchable {
|
|||
int[] docFreqs(Term[] terms) throws IOException;
|
||||
|
||||
/** Expert: Returns one greater than the largest possible document number.
|
||||
* Called by search code to compute term weights.
|
||||
*
|
||||
* @see org.apache.lucene.index.IndexReader#maxDoc()
|
||||
*/
|
||||
int maxDoc() throws IOException;
|
||||
|
@ -112,8 +112,6 @@ public interface Searchable {
|
|||
/** Expert: Low-level search implementation. Finds the top <code>n</code>
|
||||
* hits for <code>query</code>, applying <code>filter</code> if non-null.
|
||||
*
|
||||
* <p>Called by {@link Hits}.
|
||||
*
|
||||
* <p>Applications should usually call {@link Searcher#search(Query)} or
|
||||
* {@link Searcher#search(Query,Filter)} instead.
|
||||
* @throws BooleanQuery.TooManyClauses
|
||||
|
@ -121,8 +119,9 @@ public interface Searchable {
|
|||
*/
|
||||
TopDocs search(Weight weight, Filter filter, int n) throws IOException;
|
||||
|
||||
/** Expert: Returns the stored fields of document <code>i</code>.
|
||||
* Called by {@link HitCollector} implementations.
|
||||
/**
|
||||
* Returns the stored fields of document <code>i</code>.
|
||||
*
|
||||
* @see org.apache.lucene.index.IndexReader#document(int)
|
||||
* @throws CorruptIndexException if the index is corrupt
|
||||
* @throws IOException if there is a low-level IO error
|
||||
|
|
Loading…
Reference in New Issue