public static enum GroupInfo.GroupType extends Enum<GroupInfo.GroupType>
| Enum Constant and Description |
|---|
ALL_ACTIVE
All members of the group are active
|
ONE_ACTIVE
Only one member of the group is active
|
| Modifier and Type | Method and Description |
|---|---|
static GroupInfo.GroupType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupInfo.GroupType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupInfo.GroupType ALL_ACTIVE
public static final GroupInfo.GroupType ONE_ACTIVE
public static GroupInfo.GroupType[] values()
for (GroupInfo.GroupType c : GroupInfo.GroupType.values()) System.out.println(c);
public static GroupInfo.GroupType 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 © 2014. All Rights Reserved.