public static enum GitlabEvent.TargetType extends Enum<GitlabEvent.TargetType>
| Enum Constant and Description |
|---|
issue |
merge_request |
milestone |
note |
project |
snippet |
user |
| Modifier and Type | Method and Description |
|---|---|
static GitlabEvent.TargetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GitlabEvent.TargetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GitlabEvent.TargetType issue
public static final GitlabEvent.TargetType milestone
public static final GitlabEvent.TargetType merge_request
public static final GitlabEvent.TargetType note
public static final GitlabEvent.TargetType project
public static final GitlabEvent.TargetType snippet
public static final GitlabEvent.TargetType user
public static GitlabEvent.TargetType[] values()
for (GitlabEvent.TargetType c : GitlabEvent.TargetType.values()) System.out.println(c);
public static GitlabEvent.TargetType 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 © 2019. All rights reserved.