|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ServiceReport.Type> eu.planets_project.services.datatypes.ServiceReport.Type
public static enum ServiceReport.Type
Type of information returned by a service.
Enum Constant Summary | |
---|---|
ERROR
Serious problems invoking the service, implying that no valid output will exist and the workflow should not continue. |
|
INFO
Roughly corresponding to Standard Out. |
|
WARN
Things the user should be aware of, but are not fatal and do not imply significant data loss. |
Method Summary | |
---|---|
static ServiceReport.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ServiceReport.Type[] |
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 ServiceReport.Type INFO
public static final ServiceReport.Type WARN
public static final ServiceReport.Type ERROR
Method Detail |
---|
public static ServiceReport.Type[] values()
for (ServiceReport.Type c : ServiceReport.Type.values()) System.out.println(c);
public static ServiceReport.Type 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 null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |