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