mirror of https://github.com/apache/lucene.git
LUCENE-1864: fix javadocs for FieldValueHitQueue.fillFields
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@808538 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
710572d798
commit
d2e4a19bd3
|
@ -207,14 +207,14 @@ public abstract class FieldValueHitQueue extends PriorityQueue {
|
||||||
protected abstract boolean lessThan (final Object a, final Object b);
|
protected abstract boolean lessThan (final Object a, final Object b);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Given a FieldDoc object, stores the values used to sort the given document.
|
* Given a queue Entry, creates a corresponding FieldDoc
|
||||||
|
* that contains the values used to sort the given document.
|
||||||
* These values are not the raw values out of the index, but the internal
|
* These values are not the raw values out of the index, but the internal
|
||||||
* representation of them. This is so the given search hit can be collated by
|
* representation of them. This is so the given search hit can be collated by
|
||||||
* a MultiSearcher with other search hits.
|
* a MultiSearcher with other search hits.
|
||||||
*
|
*
|
||||||
* @param doc
|
* @param entry The Entry used to create a FieldDoc
|
||||||
* The FieldDoc to store sort values into.
|
* @return The newly created FieldDoc
|
||||||
* @return The same FieldDoc passed in.
|
|
||||||
* @see Searchable#search(Weight,Filter,int,Sort)
|
* @see Searchable#search(Weight,Filter,int,Sort)
|
||||||
*/
|
*/
|
||||||
FieldDoc fillFields(final Entry entry) {
|
FieldDoc fillFields(final Entry entry) {
|
||||||
|
|
Loading…
Reference in New Issue