public enum ETaskStatus extends Enum<ETaskStatus>
Enum Constant and Description |
---|
FINISHED_NO_ERROR |
FINISHED_WITH_ERROR |
RUNNING |
WAITING |
Modifier and Type | Method and Description |
---|---|
static ETaskStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ETaskStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ETaskStatus WAITING
public static final ETaskStatus RUNNING
public static final ETaskStatus FINISHED_NO_ERROR
public static final ETaskStatus FINISHED_WITH_ERROR
public static ETaskStatus[] values()
for (ETaskStatus c : ETaskStatus.values()) System.out.println(c);
public static ETaskStatus 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 © 2019 XIMA MEDIA GmbH. All rights reserved.