Class Overview
Specifies the scope of the changes for a pull request.
Summary
| Enum Values |
| PullRequestChangeScope |
ALL |
No limit is placed on the scope of the changes for the pull request. |
| PullRequestChangeScope |
UNREVIEWED |
Limits the scope of the changes for the pull request to the changes which are unreviewed for the current user. |
|
[Expand]
Inherited Methods |
From class
java.lang.Enum
|
final
Object
|
clone()
|
|
final
int
|
compareTo(E arg0)
|
|
int
|
compareTo(Object arg0)
|
|
final
boolean
|
equals(Object arg0)
|
|
final
void
|
finalize()
|
|
final
Class<E>
|
getDeclaringClass()
|
|
final
int
|
hashCode()
|
|
final
String
|
name()
|
|
final
int
|
ordinal()
|
|
String
|
toString()
|
|
static
<T extends Enum<T>>
T
|
valueOf(Class<T> arg0, String arg1)
|
|
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
final
void
|
wait()
|
|
From interface
java.lang.Comparable
|
Enum Values
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 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