Enum Container.LifecycleState
- java.lang.Object
- 
- java.lang.Enum<Container.LifecycleState>
- 
- com.oracle.bmc.containerinstances.model.Container.LifecycleState
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<Container.LifecycleState>
 - Enclosing class:
- Container
 
 public static enum Container.LifecycleState extends Enum<Container.LifecycleState> implements BmcEnum The current state of the container.
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Container.LifecycleStatecreate(String key)StringgetValue()static Container.LifecycleStatevalueOf(String name)Returns the enum constant of this type with the specified name.static Container.LifecycleState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Creatingpublic static final Container.LifecycleState Creating 
 - 
Updatingpublic static final Container.LifecycleState Updating 
 - 
Activepublic static final Container.LifecycleState Active 
 - 
Inactivepublic static final Container.LifecycleState Inactive 
 - 
Deletingpublic static final Container.LifecycleState Deleting 
 - 
Deletedpublic static final Container.LifecycleState Deleted 
 - 
Failedpublic static final Container.LifecycleState Failed 
 - 
UnknownEnumValuepublic static final Container.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- 
valuespublic static Container.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 (Container.LifecycleState c : Container.LifecycleState.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Container.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 name
- NullPointerException- if the argument is null
 
 - 
createpublic static Container.LifecycleState create(String key) 
 
- 
 
-