Enum Constant and Description |
---|
ALL_IN_SUBTREE
all groups in this folder or subfolders
|
ONE_LEVEL
just direct immediate chlidren
|
Modifier and Type | Method and Description |
---|---|
static StemScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StemScope |
valueOfIgnoreCase(java.lang.String string)
do a case-insensitive matching
|
static StemScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StemScope ONE_LEVEL
public static final StemScope ALL_IN_SUBTREE
public static StemScope[] values()
for (StemScope c : StemScope.values()) System.out.println(c);
public static StemScope 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 nullpublic static StemScope valueOfIgnoreCase(java.lang.String string)
string
-