Package com.oracle.bmc.database.model
Enum ExecutionWindow.LifecycleState
- java.lang.Object
-
- java.lang.Enum<ExecutionWindow.LifecycleState>
-
- com.oracle.bmc.database.model.ExecutionWindow.LifecycleState
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<ExecutionWindow.LifecycleState>
- Enclosing class:
- ExecutionWindow
public static enum ExecutionWindow.LifecycleState extends Enum<ExecutionWindow.LifecycleState> implements BmcEnum
The current state of the Schedule Policy.Valid states are CREATED, SCHEDULED, IN_PROGRESS, FAILED, CANCELED, UPDATING, DELETED, SUCCEEDED and PARTIAL_SUCCESS.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Canceled
Created
Creating
Deleted
Deleting
Failed
InProgress
PartialSuccess
Scheduled
Succeeded
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.Updating
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExecutionWindow.LifecycleState
create(String key)
String
getValue()
static ExecutionWindow.LifecycleState
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExecutionWindow.LifecycleState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Created
public static final ExecutionWindow.LifecycleState Created
-
Scheduled
public static final ExecutionWindow.LifecycleState Scheduled
-
InProgress
public static final ExecutionWindow.LifecycleState InProgress
-
Failed
public static final ExecutionWindow.LifecycleState Failed
-
Canceled
public static final ExecutionWindow.LifecycleState Canceled
-
Updating
public static final ExecutionWindow.LifecycleState Updating
-
Deleted
public static final ExecutionWindow.LifecycleState Deleted
-
Succeeded
public static final ExecutionWindow.LifecycleState Succeeded
-
PartialSuccess
public static final ExecutionWindow.LifecycleState PartialSuccess
-
Creating
public static final ExecutionWindow.LifecycleState Creating
-
Deleting
public static final ExecutionWindow.LifecycleState Deleting
-
UnknownEnumValue
public static final ExecutionWindow.LifecycleState UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
-
-
Method Detail
-
values
public static ExecutionWindow.LifecycleState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ExecutionWindow.LifecycleState c : ExecutionWindow.LifecycleState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExecutionWindow.LifecycleState valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
create
public static ExecutionWindow.LifecycleState create(String key)
-
-