public enum StemHierarchyType extends Enum<StemHierarchyType>
| Enum Constant and Description |
|---|
effective
effective for an assignment due to another assignment
|
immediate
immediate for a direct assignment (immediate child)
|
self
row for self so we can do a simple join
|
| Modifier and Type | Method and Description |
|---|---|
static StemHierarchyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StemHierarchyType |
valueOfIgnoreCase(String string,
boolean exceptionOnNull)
do a case-insensitive matching
|
static StemHierarchyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StemHierarchyType immediate
public static final StemHierarchyType self
public static final StemHierarchyType effective
public static StemHierarchyType[] values()
for (StemHierarchyType c : StemHierarchyType.values()) System.out.println(c);
public static StemHierarchyType 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 StemHierarchyType valueOfIgnoreCase(String string, boolean exceptionOnNull)
string - exceptionOnNull - will not allow null or blank entriesCopyright © 2016 Internet2. All rights reserved.