Enum Workunit.Notification
- java.lang.Object
-
- java.lang.Enum<Workunit.Notification>
-
- org.hpccsystems.ws.client.platform.Workunit.Notification
-
- All Implemented Interfaces:
Serializable
,Comparable<Workunit.Notification>
- Enclosing class:
- Workunit
public static enum Workunit.Notification extends Enum<Workunit.Notification>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLICATIONVALUES
CLUSTER
GRAPHS
JOBNAME
OWNER
QUERY
RESULTS
SOURCEFILES
WORKUNIT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Workunit.Notification
valueOf(String name)
Returns the enum constant of this type with the specified name.static Workunit.Notification[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WORKUNIT
public static final Workunit.Notification WORKUNIT
-
CLUSTER
public static final Workunit.Notification CLUSTER
-
QUERY
public static final Workunit.Notification QUERY
-
APPLICATIONVALUES
public static final Workunit.Notification APPLICATIONVALUES
-
RESULTS
public static final Workunit.Notification RESULTS
-
GRAPHS
public static final Workunit.Notification GRAPHS
-
SOURCEFILES
public static final Workunit.Notification SOURCEFILES
-
JOBNAME
public static final Workunit.Notification JOBNAME
-
OWNER
public static final Workunit.Notification OWNER
-
-
Method Detail
-
values
public static Workunit.Notification[] 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 (Workunit.Notification c : Workunit.Notification.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Workunit.Notification valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-