public static enum GHMyself.RepositoryListFilter extends Enum<GHMyself.RepositoryListFilter>
| Enum Constant and Description |
|---|
ALL
All public and private repositories that current user has access or collaborates to
|
MEMBER
Public and private repositories that current user is a member
|
OWNER
Public and private repositories owned by current user
|
PRIVATE
Private repositories that current user has access or collaborates to
|
PUBLIC
Public repositories that current user has access or collaborates to
|
| Modifier and Type | Method and Description |
|---|---|
static GHMyself.RepositoryListFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GHMyself.RepositoryListFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GHMyself.RepositoryListFilter ALL
public static final GHMyself.RepositoryListFilter OWNER
public static final GHMyself.RepositoryListFilter PUBLIC
public static final GHMyself.RepositoryListFilter PRIVATE
public static final GHMyself.RepositoryListFilter MEMBER
public static GHMyself.RepositoryListFilter[] values()
for (GHMyself.RepositoryListFilter c : GHMyself.RepositoryListFilter.values()) System.out.println(c);
public static GHMyself.RepositoryListFilter 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 © 2017. All rights reserved.