public enum JobType extends Enum<JobType> implements com.alibaba.fastjson.serializer.JSONSerializable
| Enum Constant and Description |
|---|
ALERT |
AUDIT_JOB |
DOWN_SAMPLING |
ETL |
EXPORT |
INGESTION |
REBUILD_INDEX |
REPORT |
SCHEDULED_SQL |
| Modifier and Type | Method and Description |
|---|---|
static JobType |
fromString(String value) |
String |
toString() |
static JobType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
void |
write(com.alibaba.fastjson.serializer.JSONSerializer serializer,
Object fieldName,
Type fieldType,
int features) |
public static final JobType ALERT
public static final JobType REPORT
public static final JobType ETL
public static final JobType INGESTION
public static final JobType REBUILD_INDEX
public static final JobType AUDIT_JOB
public static final JobType EXPORT
public static final JobType SCHEDULED_SQL
public static final JobType DOWN_SAMPLING
public static JobType[] values()
for (JobType c : JobType.values()) System.out.println(c);
public static JobType 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.