public static enum JobChangeEvent.JobChangeEventType extends java.lang.Enum<JobChangeEvent.JobChangeEventType>
Enum Constant and Description |
---|
CREATE |
DELETE |
MODIFY |
MODIFY_RENAME |
Modifier and Type | Method and Description |
---|---|
static JobChangeEvent.JobChangeEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JobChangeEvent.JobChangeEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobChangeEvent.JobChangeEventType CREATE
public static final JobChangeEvent.JobChangeEventType MODIFY
public static final JobChangeEvent.JobChangeEventType DELETE
public static final JobChangeEvent.JobChangeEventType MODIFY_RENAME
public static JobChangeEvent.JobChangeEventType[] values()
for (JobChangeEvent.JobChangeEventType c : JobChangeEvent.JobChangeEventType.values()) System.out.println(c);
public static JobChangeEvent.JobChangeEventType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null