public final enum

PullRequestChangeScope

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.atlassian.bitbucket.pull.PullRequestChangeScope

Class Overview

Specifies the scope of the changes for a pull request.

See Also

Summary

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
static PullRequestChangeScope valueOf(String name)
final static PullRequestChangeScope[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final PullRequestChangeScope ALL

No limit is placed on the scope of the changes for the pull request.

public static final PullRequestChangeScope RANGE

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.

public static final PullRequestChangeScope UNREVIEWED

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.

Public Methods

public static PullRequestChangeScope valueOf (String name)

public static final PullRequestChangeScope[] values ()