public enum GrouperLoaderStatus extends Enum<GrouperLoaderStatus>
| Enum Constant and Description |
|---|
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.
|
SUCCESS
job finished with success
|
WARNING
job finished, but had problems.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getFriendlyString()
friendly string e.g.
|
static GrouperLoaderStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GrouperLoaderStatus |
valueOfIgnoreCase(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.
|
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
public static GrouperLoaderStatus[] values()
for (GrouperLoaderStatus c : GrouperLoaderStatus.values()) System.out.println(c);
public static GrouperLoaderStatus 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 String getFriendlyString()
public static GrouperLoaderStatus valueOfIgnoreCase(String string, boolean exceptionOnNotFound)
string - exceptionOnNotFound - true to throw exception if method not foundCopyright © 2016 Internet2. All rights reserved.