public enum TdJobStatusType extends Enum<TdJobStatusType>
| Enum Constant and Description |
|---|
COMPLETED |
FAILED |
INITIALIZING |
PENDING |
RUNNING |
STATUS_UNKNOWN |
VALIDATING |
| 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 COMPLETED
public static final TdJobStatusType VALIDATING
public static final TdJobStatusType PENDING
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 © 2015. All Rights Reserved.