public enum ExecuteStatus extends Enum<ExecuteStatus> implements com.baomidou.mybatisplus.core.enums.IEnum<Byte>
| Enum Constant and Description |
|---|
ASYNC_TASK_FAILED |
ASYNC_TASK_RUNNING |
ASYNC_TASK_SUCCESS |
FAILED |
RUNNING |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
Byte |
getValue() |
static ExecuteStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecuteStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecuteStatus RUNNING
public static final ExecuteStatus SUCCESS
public static final ExecuteStatus FAILED
public static final ExecuteStatus ASYNC_TASK_RUNNING
public static final ExecuteStatus ASYNC_TASK_SUCCESS
public static final ExecuteStatus ASYNC_TASK_FAILED
public static ExecuteStatus[] values()
for (ExecuteStatus c : ExecuteStatus.values()) System.out.println(c);
public static ExecuteStatus 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 © 2024 The Apache Software Foundation. All rights reserved.