public enum SchedulerJobEvent extends Enum<SchedulerJobEvent>
Enum Constant and Description |
---|
ON_DELETE |
ON_EXPIRE |
ON_RESUME |
ON_SCHEDULE |
ON_SUBMIT |
ON_SUSPEND |
Modifier and Type | Method and Description |
---|---|
static SchedulerJobEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchedulerJobEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchedulerJobEvent ON_SUBMIT
public static final SchedulerJobEvent ON_SCHEDULE
public static final SchedulerJobEvent ON_SUSPEND
public static final SchedulerJobEvent ON_RESUME
public static final SchedulerJobEvent ON_EXPIRE
public static final SchedulerJobEvent ON_DELETE
public static SchedulerJobEvent[] values()
for (SchedulerJobEvent c : SchedulerJobEvent.values()) System.out.println(c);
public static SchedulerJobEvent 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 © 2014–2016 Apache Software Foundation. All rights reserved.