public enum ExcuteStatus extends Enum<ExcuteStatus>
| Enum Constant and Description |
|---|
Failed |
NotStarted |
Running |
Successed |
| Modifier and Type | Method and Description |
|---|---|
static ExcuteStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcuteStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcuteStatus NotStarted
public static final ExcuteStatus Running
public static final ExcuteStatus Successed
public static final ExcuteStatus Failed
public static ExcuteStatus[] values()
for (ExcuteStatus c : ExcuteStatus.values()) System.out.println(c);
public static ExcuteStatus 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 © 2025. All rights reserved.