public static enum Stem.Scope extends Enum<Stem.Scope>
| Enum Constant and Description |
|---|
ONE
one level (direct children)
|
SUB
all decendents
|
| Modifier and Type | Method and Description |
|---|---|
static Stem.Scope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Stem.Scope |
valueOfIgnoreCase(String string,
boolean exceptionOnNull)
do a case-insensitive matching
|
static Stem.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Stem.Scope ONE
public static final Stem.Scope SUB
public static Stem.Scope[] values()
for (Stem.Scope c : Stem.Scope.values()) System.out.println(c);
public static Stem.Scope 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 nullpublic static Stem.Scope valueOfIgnoreCase(String string, boolean exceptionOnNull)
string - exceptionOnNull - will not allow null or blank entriesCopyright © 2016 Internet2. All rights reserved.