public final enum

PullRequestParticipantStatus

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

Class Overview

Enumerates all the possible statuses a participant can have with regards to a pull request.

Summary

Enum Values
PullRequestParticipantStatus  APPROVED  Indicates that the reviewer has approved the changes in the pull request. 
PullRequestParticipantStatus  NEEDS_WORK  Indicates that the participant has finished reviewing the changes in the pull request. 
PullRequestParticipantStatus  UNAPPROVED  Indicates that the participant has not finished reviewing the changes in the pull request. 
Public Methods
@Nonnull static PullRequestParticipantStatus fromId(int id)
int getId()
int getWeight()
static PullRequestParticipantStatus valueOf(String name)
final static PullRequestParticipantStatus[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final PullRequestParticipantStatus APPROVED

Indicates that the reviewer has approved the changes in the pull request.

public static final PullRequestParticipantStatus NEEDS_WORK

Indicates that the participant has finished reviewing the changes in the pull request. They have provided feedback which needs to be addressed before they can approve.

public static final PullRequestParticipantStatus UNAPPROVED

Indicates that the participant has not finished reviewing the changes in the pull request.

Public Methods

@Nonnull public static PullRequestParticipantStatus fromId (int id)

public int getId ()

public int getWeight ()

public static PullRequestParticipantStatus valueOf (String name)

public static final PullRequestParticipantStatus[] values ()