Package com.oracle.bmc.fusionapps.model
Enum Action.State
- java.lang.Object
- 
- java.lang.Enum<Action.State>
- 
- com.oracle.bmc.fusionapps.model.Action.State
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<Action.State>
 - Enclosing class:
- Action
 
 public static enum Action.State extends Enum<Action.State> implements BmcEnum A string that describes whether the change is applied hot or cold
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AcceptedCanceledFailedInProgressSucceededUnknownEnumValueThis value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Action.Statecreate(String key)StringgetValue()static Action.StatevalueOf(String name)Returns the enum constant of this type with the specified name.static Action.State[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Acceptedpublic static final Action.State Accepted 
 - 
InProgresspublic static final Action.State InProgress 
 - 
Succeededpublic static final Action.State Succeeded 
 - 
Failedpublic static final Action.State Failed 
 - 
Canceledpublic static final Action.State Canceled 
 - 
UnknownEnumValuepublic static final Action.State 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- 
valuespublic static Action.State[] 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 (Action.State c : Action.State.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Action.State 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 name
- NullPointerException- if the argument is null
 
 - 
createpublic static Action.State create(String key) 
 
- 
 
-