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