java.lang.Object | |
↳ | com.atlassian.jira.issue.search.SearchResults |
Clients of @PublicApi
can expect
that programs compiled against a given version will remain binary compatible with later versions of the
@PublicApi
as per each product's API policy as long as the client does not implement/extend
@PublicApi
interfaces or classes (refer to each product's API policy for the exact
guarantee---usually binary compatibility is guaranteed at least across minor versions).
@PublicApi
interfaces and classes are not designed to be implemented or extended by clients,
we may perform certain types of binary-incompatible changes to these classes and interfaces, but these will not
affect well-behaved clients that do not extend/implement these types (in general, only classes and interfaces
annotated with @PublicSpi
are safe to extend/implement).
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Construct searchResults using a list of issues.
| |||||||||||
Construct searchResults using the issues that should be displayed, and the 'total' number of issues.
| |||||||||||
Construct searchResults using the issues that should be displayed, and the 'total' number of issues.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Get the issues available in this page.
| |||||||||||
Return the 'readable' start (ie 1 instead of 0)
| |||||||||||
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Construct searchResults using a list of issues. The issues returned by getIssues()
will
be a subset of the issues passed in.
issues | A list of Issue objects |
---|---|
pagerFilter | Representing which issues to limit the results to |
Construct searchResults using the issues that should be displayed, and the 'total' number of issues. This is used when a search does not wish to load the entire list of issues into memory.
issuesInPage | A list of Issue objects |
---|---|
totalIssueCount | The count of the number of issues returned |
pagerFilter | Representing the users preference for paging |
Construct searchResults using the issues that should be displayed, and the 'total' number of issues. This is used when we do a stable search and want to return a max of the selected page's length, not the stable search limit.
issuesInPage | A list of Issue objects |
---|---|
totalIssueCount | The count of the number of issues returned |
maxIssueCount | The maximum number of issues to include in the search |
startIndex | The index of the first issue in the search |
Get the issues available in this page.
Issue
objects
Return the 'readable' start (ie 1 instead of 0)