|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<StemHierarchyType>
edu.internet2.middleware.grouper.stem.StemHierarchyType
public enum StemHierarchyType
Type of assignment: immediate for direct assignment (immediate child), effective for an assignment due to another assignment, or self for each stem (so we can do a simple join)
Enum Constant Summary | |
---|---|
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 |
Method Summary | |
---|---|
static StemHierarchyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static StemHierarchyType |
valueOfIgnoreCase(java.lang.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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final StemHierarchyType immediate
public static final StemHierarchyType self
public static final StemHierarchyType effective
Method Detail |
---|
public static StemHierarchyType[] values()
for (StemHierarchyType c : StemHierarchyType.values()) System.out.println(c);
public static StemHierarchyType 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 name
java.lang.NullPointerException
- if the argument is nullpublic static StemHierarchyType valueOfIgnoreCase(java.lang.String string, boolean exceptionOnNull)
string
- exceptionOnNull
- will not allow null or blank entries
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |