public enum LifeCycleStatusCode extends Enum<LifeCycleStatusCode>
Enum Constant and Description |
---|
LIFE_CYCLE_COMMITTED
LIFE_CYCLE_COMMITTED : indicates that the lifeCycle has been committed
|
LIFE_CYCLE_IN_PROCESS
LIFE_CYCLE_IN_PROCESS : indicates that the lifeCycle hasn't been committed yet
|
Modifier and Type | Method and Description |
---|---|
static LifeCycleStatusCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LifeCycleStatusCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifeCycleStatusCode LIFE_CYCLE_COMMITTED
public static final LifeCycleStatusCode LIFE_CYCLE_IN_PROCESS
public static LifeCycleStatusCode[] values()
for (LifeCycleStatusCode c : LifeCycleStatusCode.values()) System.out.println(c);
public static LifeCycleStatusCode 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 © 2018 Vitam. All rights reserved.