@Generated(value="jsii-pacmak/1.30.0 (build adae23f)", date="2021-06-30T10:00:53.617Z") @Stability(value=Experimental) public enum EventAction extends Enum<EventAction>
| Enum Constant and Description |
|---|
PULL_REQUEST_CREATED
(experimental) Creating a Pull Request.
|
PULL_REQUEST_MERGED
(experimental) Merging a Pull Request.
|
PULL_REQUEST_REOPENED
(experimental) Re-opening a previously closed Pull Request.
|
PULL_REQUEST_UPDATED
(experimental) Updating a Pull Request.
|
PUSH
(experimental) A push (of a branch, or a tag) to the repository.
|
| Modifier and Type | Method and Description |
|---|---|
static EventAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final EventAction PUSH
@Stability(value=Experimental) public static final EventAction PULL_REQUEST_CREATED
@Stability(value=Experimental) public static final EventAction PULL_REQUEST_UPDATED
@Stability(value=Experimental) public static final EventAction PULL_REQUEST_MERGED
@Stability(value=Experimental) public static final EventAction PULL_REQUEST_REOPENED
Note that this event is only supported for GitHub and GitHubEnterprise sources.
public static EventAction[] values()
for (EventAction c : EventAction.values()) System.out.println(c);
public static EventAction 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 nullCopyright © 2021. All rights reserved.