public enum RunOnceState extends Enum<RunOnceState>
Enum Constant and Description |
---|
COMPLETED |
FAILED |
INPROGRESS |
Modifier and Type | Method and Description |
---|---|
static RunOnceState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RunOnceState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RunOnceState INPROGRESS
public static final RunOnceState COMPLETED
public static final RunOnceState FAILED
public static RunOnceState[] values()
for (RunOnceState c : RunOnceState.values()) System.out.println(c);
public static RunOnceState 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 © 2010–2014 The Kuali Foundation. All rights reserved.