Interface SearchResult

All Known Implementing Classes:
SearchResultImpl

public interface SearchResult
A single result of OAI-PMH.
  • Method Summary

    Modifier and Type
    Method
    Description
    The search item list
    long
    Get the limit.
    long
    Get the offset.
    long
    Get the total number of items found, limited by the value returned by getLimit().
  • 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 by getLimit().
      Returns:
      The number.
    • getOffset

      long getOffset()
      Get the offset.
      Returns:
      The offset.
    • getLimit

      long getLimit()
      Get the limit.
      Returns:
      The limit.