Class SearchResults

java.lang.Object
com.atlassian.sal.api.search.SearchResults

public class SearchResults extends Object
Provides searchresults for a query. If there were any errors, check the list of errors. The searchresult will also contain the total searchtime (in milliseconds).
Since:
2.0
  • Constructor Details

    • SearchResults

      public SearchResults(List<Message> errors)
      Constructs search results that contained errors
      Parameters:
      errors - The error list
    • SearchResults

      public SearchResults(List<SearchMatch> matches, int totalResults, long searchTime)
      Constructs search results with successful matches
      Parameters:
      matches - The list of matches
      totalResults - The total number of available results
      searchTime - The time the search took in milliseconds
  • Method Details

    • getErrors

      public List<Message> getErrors()
      Returns:
      search errors
    • getMatches

      public List<SearchMatch> getMatches()
      Returns:
      the matches
    • getSearchTime

      public long getSearchTime()
      Returns:
      the time the search took in milliseconds
    • getTotalResults

      public int getTotalResults()
      Returns:
      the total results available