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