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