java.lang.Object | |
↳ | com.atlassian.bitbucket.pull.SimplePullRequestActivityPage<T extends com.atlassian.bitbucket.pull.PullRequestActivity> |
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
com.atlassian.bitbucket.pull.PullRequestActivityPage
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Performs an action on each result in the page.
| |||||||||||
Get a map of the page values mapped by their ordinal values.
| |||||||||||
Transforms the results on the page, producing a new
Page with different values but
all other properties (e.g. |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
com.atlassian.bitbucket.pull.PullRequestActivityPage
| |||||||||||
From interface
com.atlassian.bitbucket.util.Page
|
Performs an action on each result in the page.
action | the action to apply to each result |
---|
Get a map of the page values mapped by their ordinal values. For filtered pages, the ordinals are the ordinals in the underlying paged collection.
Transforms the results on the page, producing a new Page
with different values
but
all other properties (e.g. start
and limit
) unchanged.
Implementation note: Transformation is done eagerly to ensure the resulting Page
does
not retain a reference to the original results from the source page. If a transform is used purely to apply
some set of side effects, consider using forEach(Consumer super T>)
instead.
transformFunction | the transformer |
---|