public static enum Group.GroupCategory extends java.lang.Enum<Group.GroupCategory>
| Enum Constant and Description |
|---|
ALUMNI |
CONFERENCE |
CORPORATE |
NETWORK |
OTHER |
PHILANTHROPIC |
PROFESSIONAL |
| Modifier and Type | Method and Description |
|---|---|
static Group.GroupCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Group.GroupCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Group.GroupCategory ALUMNI
public static final Group.GroupCategory CORPORATE
public static final Group.GroupCategory CONFERENCE
public static final Group.GroupCategory NETWORK
public static final Group.GroupCategory PHILANTHROPIC
public static final Group.GroupCategory PROFESSIONAL
public static final Group.GroupCategory OTHER
public static Group.GroupCategory[] values()
for (Group.GroupCategory c : Group.GroupCategory.values()) System.out.println(c);
public static Group.GroupCategory 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