Interface QueryHits
-
- All Superinterfaces:
CloseableHits
- All Known Implementing Classes:
AbstractQueryHits
,ChildNodesQueryHits
,DefaultQueryHits
,LuceneQueryHits
,NodeTraversingQueryHits
,SortedLuceneQueryHits
public interface QueryHits extends CloseableHits
Defines an interface for readingScoreNode
s
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScoreNode
nextScoreNode()
Returns the next score node 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
-
nextScoreNode
ScoreNode nextScoreNode() throws IOException
Returns the next score node in this QueryHits ornull
if there are no more score nodes.- Returns:
- the next score node in this QueryHits.
- Throws:
IOException
- if an error occurs while reading from the index.
-
-