Enum SubscriptionLifecycleState
- java.lang.Object
-
- java.lang.Enum<SubscriptionLifecycleState>
-
- com.oracle.bmc.tenantmanagercontrolplane.model.SubscriptionLifecycleState
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<SubscriptionLifecycleState>
@Generated(value="OracleSDKGenerator", comments="API Version: 20230401") public enum SubscriptionLifecycleState extends Enum<SubscriptionLifecycleState> implements BmcEnum
The current lifecycle state of the OCS subscription.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Active
Creating
Failed
Inactive
NeedsAttention
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 Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SubscriptionLifecycleState
create(String key)
String
getValue()
static SubscriptionLifecycleState
valueOf(String name)
Returns the enum constant of this type with the specified name.static SubscriptionLifecycleState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NeedsAttention
public static final SubscriptionLifecycleState NeedsAttention
-
Active
public static final SubscriptionLifecycleState Active
-
Inactive
public static final SubscriptionLifecycleState Inactive
-
Failed
public static final SubscriptionLifecycleState Failed
-
Creating
public static final SubscriptionLifecycleState Creating
-
UnknownEnumValue
public static final SubscriptionLifecycleState 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 SubscriptionLifecycleState[] 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 (SubscriptionLifecycleState c : SubscriptionLifecycleState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SubscriptionLifecycleState 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 SubscriptionLifecycleState create(String key)
-
-