public enum ScopeState extends Enum<ScopeState>
Enum Constant and Description |
---|
COMPENSATED |
COMPENSATING |
COMPLETED_SUCCESSFUL |
COMPLETED_UNSUCCESSFUL |
HANDLING_FAULT |
INITIALIZATION_ERROR |
INITIALIZED |
RETHROWING_FAULT |
RUNNING |
TERMINATED |
TERMINATING |
Modifier and Type | Method and Description |
---|---|
static ScopeState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScopeState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScopeState INITIALIZATION_ERROR
public static final ScopeState INITIALIZED
public static final ScopeState RUNNING
public static final ScopeState TERMINATING
public static final ScopeState HANDLING_FAULT
public static final ScopeState COMPLETED_UNSUCCESSFUL
public static final ScopeState COMPLETED_SUCCESSFUL
public static final ScopeState TERMINATED
public static final ScopeState COMPENSATING
public static final ScopeState COMPENSATED
public static final ScopeState RETHROWING_FAULT
public static ScopeState[] values()
for (ScopeState c : ScopeState.values()) System.out.println(c);
public static ScopeState 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 © 2011 OW2 Consortium. All Rights Reserved.