public enum GroupVisibility extends java.lang.Enum<GroupVisibility>
| Enum Constant and Description |
|---|
GROUP
The group and group set are visible
|
GROUP_SET
Only the group set is visible
|
NONE
No group information is visible
|
| Modifier and Type | Method and Description |
|---|---|
static GroupVisibility |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GroupVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupVisibility NONE
public static final GroupVisibility GROUP_SET
public static final GroupVisibility GROUP
public static GroupVisibility[] values()
for (GroupVisibility c : GroupVisibility.values()) System.out.println(c);
public static GroupVisibility 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 null