public static enum GHTeam.Privacy extends Enum<GHTeam.Privacy>
| Modifier and Type | Method and Description |
|---|---|
static GHTeam.Privacy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GHTeam.Privacy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GHTeam.Privacy SECRET
public static final GHTeam.Privacy CLOSED
public static GHTeam.Privacy[] values()
for (GHTeam.Privacy c : GHTeam.Privacy.values()) System.out.println(c);
public static GHTeam.Privacy 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 © 2020. All rights reserved.