public enum SchedulerJobState extends Enum<SchedulerJobState> implements StateTransitioner<SchedulerJobState,SchedulerJobEvent>
Enum Constant and Description |
---|
DELETED |
EXPIRED |
NEW |
SCHEDULED |
SUSPENDED |
Modifier and Type | Method and Description |
---|---|
static SchedulerJobState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchedulerJobState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
nextTransition
public static final SchedulerJobState NEW
public static final SchedulerJobState SCHEDULED
public static final SchedulerJobState SUSPENDED
public static final SchedulerJobState EXPIRED
public static final SchedulerJobState DELETED
public static SchedulerJobState[] values()
for (SchedulerJobState c : SchedulerJobState.values()) System.out.println(c);
public static SchedulerJobState 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.