java.lang.Object | ||
↳ | java.lang.Enum<E extends java.lang.Enum<E>> | |
↳ | com.atlassian.bitbucket.pull.PullRequestChangeScope |
Enum Values | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
PullRequestChangeScope | ALL | No limit is placed on the scope of the changes for the pull request. | |||||||||
PullRequestChangeScope | RANGE | Limits the scope of the changes for the pull request to one or more commits between
getSinceId() and getUntilId() . |
|||||||||
PullRequestChangeScope | UNREVIEWED | Limits the scope of the changes for the pull request to the changes which are unreviewed for the current user. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Enum
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
java.lang.Comparable
|
No limit is placed on the scope of the changes for the pull request.
Limits the scope of the changes for the pull request to one or more commits between
getSinceId()
and getUntilId()
.
If either getSinceId()
or getUntilId()
are
not included in the request
, the scope defaults to ALL
changes.
Limits the scope of the changes for the pull request to the changes which are unreviewed for the current user.
The unreviewed changes are considered to be the changes between the lastReviewedCommit
of the current
user and the tip of the source branch.
If there are no unreviewed changes, the scope defaults to ALL
changes.