Interface IterableResult<T>
-
- Type Parameters:
T
- the type
- All Superinterfaces:
Iterable<T>
- All Known Implementing Classes:
AbstractSearchResult
,AggregatedIterableResult
,CollectionIterableResult
,WrappingIterableResult
public interface IterableResult<T> extends Iterable<T>
The result of a query.- Since:
- 4.0M1
- Version:
- $Id: 4df134813f5409805208d5e96d2555b520b01d40 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getOffset()
int
getSize()
int
getTotalHits()
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
getTotalHits
int getTotalHits()
- Returns:
- the total number of possible results without offset or maximum results limits
-
getOffset
int getOffset()
- Returns:
- the index in the total number of possible search result where this extract starts
-
getSize
int getSize()
- Returns:
- the number of found extensions
-
-