public enum GHCommentAuthorAssociation extends Enum<GHCommentAuthorAssociation>
| Enum Constant and Description |
|---|
COLLABORATOR
Author has been invited to collaborate on the repository.
|
CONTRIBUTOR
Author has previously committed to the repository.
|
FIRST_TIME_CONTRIBUTOR
Author has not previously committed to the repository.
|
FIRST_TIMER
Author has not previously committed to GitHub.
|
MEMBER
Author is a member of the organization that owns the repository.
|
NONE
Author has no association with the repository.
|
OWNER
Author is the owner of the repository.
|
| Modifier and Type | Method and Description |
|---|---|
static GHCommentAuthorAssociation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GHCommentAuthorAssociation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GHCommentAuthorAssociation COLLABORATOR
public static final GHCommentAuthorAssociation CONTRIBUTOR
public static final GHCommentAuthorAssociation FIRST_TIMER
public static final GHCommentAuthorAssociation FIRST_TIME_CONTRIBUTOR
public static final GHCommentAuthorAssociation MEMBER
public static final GHCommentAuthorAssociation NONE
public static final GHCommentAuthorAssociation OWNER
public static GHCommentAuthorAssociation[] values()
for (GHCommentAuthorAssociation c : GHCommentAuthorAssociation.values()) System.out.println(c);
public static GHCommentAuthorAssociation 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 © 2018. All rights reserved.