Interface SearchResult
- All Known Implementing Classes:
SearchResultImpl
public interface SearchResult
A single result of OAI-PMH.
-
Method Summary
Modifier and TypeMethodDescriptiongetItems()The search item listlonggetLimit()Get the limit.longGet the offset.longsize()Get the total number of items found, limited by the value returned bygetLimit().
-
Method Details
-
getItems
List<SearchResultItem> getItems()The search item list- Returns:
- Item list.
-
size
long size()Get the total number of items found, limited by the value returned bygetLimit().- Returns:
- The number.
-
getOffset
long getOffset()Get the offset.- Returns:
- The offset.
-
getLimit
long getLimit()Get the limit.- Returns:
- The limit.
-