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