public enum GHPullRequestReviewState extends Enum<GHPullRequestReviewState>
| Enum Constant and Description |
|---|
APPROVED |
COMMENTED |
DISMISSED |
PENDING |
REQUEST_CHANGES |
| Modifier and Type | Method and Description |
|---|---|
String |
action() |
static GHPullRequestReviewState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GHPullRequestReviewState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GHPullRequestReviewState PENDING
public static final GHPullRequestReviewState APPROVED
public static final GHPullRequestReviewState REQUEST_CHANGES
public static final GHPullRequestReviewState COMMENTED
public static final GHPullRequestReviewState DISMISSED
public static GHPullRequestReviewState[] values()
for (GHPullRequestReviewState c : GHPullRequestReviewState.values()) System.out.println(c);
public static GHPullRequestReviewState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String action()
Copyright © 2017. All rights reserved.