public enum WUState extends Enum<WUState>
| Enum Constant and Description |
|---|
ABORTED |
ABORTING |
ARCHIVED |
BLOCKED |
COMPILED |
COMPILING |
COMPLETED |
FAILED |
LAST |
PAUSED |
RUNNING |
SCHEDULED |
SUBMITTED |
UNKNOWN |
UNKNOWN_ONSERVER |
WAIT |
| Modifier and Type | Method and Description |
|---|---|
static WUState |
valueOf(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.
|
public static final WUState UNKNOWN
public static final WUState UNKNOWN_ONSERVER
public static final WUState SCHEDULED
public static final WUState SUBMITTED
public static final WUState RUNNING
public static final WUState ABORTING
public static final WUState BLOCKED
public static final WUState WAIT
public static final WUState COMPILING
public static final WUState PAUSED
public static final WUState COMPLETED
public static final WUState FAILED
public static final WUState ABORTED
public static final WUState ARCHIVED
public static final WUState COMPILED
public static final WUState LAST
public static WUState[] values()
for (WUState c : WUState.values()) System.out.println(c);
public static WUState 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 nullCopyright © 2021. All rights reserved.