eu.planets_project.services.datatypes
Enum ServiceReport.Type

java.lang.Object
  extended by java.lang.Enum<ServiceReport.Type>
      extended by eu.planets_project.services.datatypes.ServiceReport.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ServiceReport.Type>
Enclosing class:
ServiceReport

public static enum ServiceReport.Type
extends java.lang.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

INFO

public static final ServiceReport.Type INFO
Roughly corresponding to Standard Out.


WARN

public static final ServiceReport.Type WARN
Things the user should be aware of, but are not fatal and do not imply significant data loss.


ERROR

public static final ServiceReport.Type ERROR
Serious problems invoking the service, implying that no valid output will exist and the workflow should not continue.

Method Detail

values

public static ServiceReport.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ServiceReport.Type c : ServiceReport.Type.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ServiceReport.Type valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright © 2007-2010 The Planets Consortium. All Rights Reserved.