public enum TdJobStatusType extends Enum<TdJobStatusType>
| Enum Constant and Description |
|---|
COMPLETED |
FAILED |
FALLBACK |
INITIALIZING |
RUNNING |
STATUS_UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static TdJobStatusType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TdJobStatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TdJobStatusType STATUS_UNKNOWN
public static final TdJobStatusType RUNNING
public static final TdJobStatusType INITIALIZING
public static final TdJobStatusType FAILED
public static final TdJobStatusType FALLBACK
public static final TdJobStatusType COMPLETED
public static TdJobStatusType[] values()
for (TdJobStatusType c : TdJobStatusType.values()) System.out.println(c);
public static TdJobStatusType 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 © 2014. All Rights Reserved.