|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<GrouperLoaderStatus>
edu.internet2.middleware.grouper.app.loader.GrouperLoaderStatus
public enum GrouperLoaderStatus
status of a job
Enum Constant Summary | |
---|---|
CONFIG_ERROR
job cant even start |
|
ERROR
job didnt finish, it had problems |
|
RUNNING
job is running |
|
STARTED
job was started |
|
SUBJECT_PROBLEMS
job finished but there were problems with one or more subjects (e.g. not found, duplicate, unresolvable) |
|
SUCCESS
job finished with success |
|
WARNING
job finished, but had problems. |
Method Summary | |
---|---|
java.lang.String |
getFriendlyString()
friendly string e.g. for report |
static GrouperLoaderStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static GrouperLoaderStatus |
valueOfIgnoreCase(java.lang.String string,
boolean exceptionOnNotFound)
do a case-insensitive matching |
static GrouperLoaderStatus[] |
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 GrouperLoaderStatus STARTED
public static final GrouperLoaderStatus RUNNING
public static final GrouperLoaderStatus CONFIG_ERROR
public static final GrouperLoaderStatus SUBJECT_PROBLEMS
public static final GrouperLoaderStatus SUCCESS
public static final GrouperLoaderStatus WARNING
public static final GrouperLoaderStatus ERROR
Method Detail |
---|
public static GrouperLoaderStatus[] values()
for (GrouperLoaderStatus c : GrouperLoaderStatus.values()) System.out.println(c);
public static GrouperLoaderStatus 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 java.lang.String getFriendlyString()
public static GrouperLoaderStatus valueOfIgnoreCase(java.lang.String string, boolean exceptionOnNotFound)
string
- exceptionOnNotFound
- true to throw exception if method not found
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |