public static enum Group.GroupPrivacy extends java.lang.Enum<Group.GroupPrivacy>
| Modifier and Type | Method and Description |
|---|---|
static Group.GroupPrivacy |
fromValue(java.lang.String value) |
java.lang.String |
getValue() |
static Group.GroupPrivacy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Group.GroupPrivacy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Group.GroupPrivacy OPEN
public static final Group.GroupPrivacy CLOSED
public static final Group.GroupPrivacy SECRET
public static Group.GroupPrivacy[] values()
for (Group.GroupPrivacy c : Group.GroupPrivacy.values()) System.out.println(c);
public static Group.GroupPrivacy valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()
public static Group.GroupPrivacy fromValue(java.lang.String value)