public enum GitHubType extends Enum<GitHubType>
Enum Constant and Description |
---|
CLOSEPULLREQUEST |
COMMIT |
GETCOMMITFILE |
PULLREQUEST |
PULLREQUESTCOMMENT |
PULLREQUESTFILES |
PULLREQUESTSTATE |
TAG |
Modifier and Type | Method and Description |
---|---|
static GitHubType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GitHubType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GitHubType CLOSEPULLREQUEST
public static final GitHubType PULLREQUESTCOMMENT
public static final GitHubType COMMIT
public static final GitHubType PULLREQUEST
public static final GitHubType TAG
public static final GitHubType PULLREQUESTSTATE
public static final GitHubType PULLREQUESTFILES
public static final GitHubType GETCOMMITFILE
public static GitHubType[] values()
for (GitHubType c : GitHubType.values()) System.out.println(c);
public static GitHubType 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 nullApache Camel