Package com.oracle.bmc.database.model
Enum ConvertToPdbDetails.Action
- java.lang.Object
-
- java.lang.Enum<ConvertToPdbDetails.Action>
-
- com.oracle.bmc.database.model.ConvertToPdbDetails.Action
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<ConvertToPdbDetails.Action>
- Enclosing class:
- ConvertToPdbDetails
public static enum ConvertToPdbDetails.Action extends Enum<ConvertToPdbDetails.Action> implements BmcEnum
The operations used to convert a non-container database to a pluggable database.- Use PRECHECK to run a pre-check operation on non-container database prior to converting it into a pluggable database. - Use CONVERT to convert a non-container database into a pluggable database. - Use SYNC if the non-container database was manually converted into a pluggable database using the dbcli command-line utility. Databases may need to be converted manually if the CONVERT action fails when converting a non-container database using the API. - Use SYNC_ROLLBACK if the conversion of a non-container database into a pluggable database was manually rolled back using the dbcli command line utility. Conversions may need to be manually rolled back if the CONVERT action fails when converting a non-container database using the API.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Convert
Precheck
Sync
SyncRollback
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConvertToPdbDetails.Action
create(String key)
String
getValue()
static ConvertToPdbDetails.Action
valueOf(String name)
Returns the enum constant of this type with the specified name.static ConvertToPdbDetails.Action[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Precheck
public static final ConvertToPdbDetails.Action Precheck
-
Convert
public static final ConvertToPdbDetails.Action Convert
-
Sync
public static final ConvertToPdbDetails.Action Sync
-
SyncRollback
public static final ConvertToPdbDetails.Action SyncRollback
-
-
Method Detail
-
values
public static ConvertToPdbDetails.Action[] 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 (ConvertToPdbDetails.Action c : ConvertToPdbDetails.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConvertToPdbDetails.Action 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 ConvertToPdbDetails.Action create(String key)
-
-