Interface SearchResult

All Known Subinterfaces:
ExtendedSearchResult
All Known Implementing Classes:
DefaultExtendedSearchResult, DefaultSearchResult

public interface SearchResult
The search result container. Holds the result object range collection and provides the total count.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the object result collection according to the range specified inside the query of this result.
    int
    Returns the start index of the first object of the result list.
    int
    Returns the total hit count of query (without range).
  • Method Details

    • getResult

      List<ResultObject> getResult()
      Returns the object result collection according to the range specified inside the query of this result.
    • getTotalCount

      int getTotalCount()
      Returns the total hit count of query (without range).
    • getStart

      int getStart()
      Returns the start index of the first object of the result list.