Interface MultiColumnQueryHits
-
- All Superinterfaces:
CloseableHits
- All Known Implementing Classes:
FilterMultiColumnQueryHits
,Join
,QueryHitsAdapter
,SortedMultiColumnQueryHits
public interface MultiColumnQueryHits extends CloseableHits
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Name[]
getSelectorNames()
ScoreNode[]
nextScoreNodes()
Returns the next score nodes in this QueryHits ornull
if there are no more score nodes.-
Methods inherited from interface org.apache.jackrabbit.core.query.lucene.CloseableHits
close, getSize, skip
-
-
-
-
Method Detail
-
nextScoreNodes
ScoreNode[] nextScoreNodes() throws IOException
Returns the next score nodes in this QueryHits ornull
if there are no more score nodes.- Returns:
- the next score nodes in this QueryHits.
- Throws:
IOException
- if an error occurs while reading from the index.
-
getSelectorNames
Name[] getSelectorNames()
- Returns:
- the selector names that correspond to the
ScoreNode
s returned bynextScoreNodes()
.
-
-