Enum WUState
- java.lang.Object
-
- java.lang.Enum<WUState>
-
- org.hpccsystems.ws.client.wrappers.WUState
-
- All Implemented Interfaces:
Serializable,Comparable<WUState>
public enum WUState extends Enum<WUState>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WUStatevalueOf(String name)Returns the enum constant of this type with the specified name.static WUState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final WUState UNKNOWN
-
UNKNOWN_ONSERVER
public static final WUState UNKNOWN_ONSERVER
-
SCHEDULED
public static final WUState SCHEDULED
-
SUBMITTED
public static final WUState SUBMITTED
-
RUNNING
public static final WUState RUNNING
-
ABORTING
public static final WUState ABORTING
-
BLOCKED
public static final WUState BLOCKED
-
WAIT
public static final WUState WAIT
-
COMPILING
public static final WUState COMPILING
-
PAUSED
public static final WUState PAUSED
-
COMPLETED
public static final WUState COMPLETED
-
FAILED
public static final WUState FAILED
-
ABORTED
public static final WUState ABORTED
-
ARCHIVED
public static final WUState ARCHIVED
-
COMPILED
public static final WUState COMPILED
-
LAST
public static final WUState LAST
-
-
Method Detail
-
values
public static WUState[] 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 (WUState c : WUState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WUState 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
-
-