Package com.oracle.bmc.database.model
Enum PdbConversionHistoryEntrySummary.Action
- java.lang.Object
- 
- java.lang.Enum<PdbConversionHistoryEntrySummary.Action>
- 
- com.oracle.bmc.database.model.PdbConversionHistoryEntrySummary.Action
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<PdbConversionHistoryEntrySummary.Action>
 - Enclosing class:
- PdbConversionHistoryEntrySummary
 
 public static enum PdbConversionHistoryEntrySummary.Action extends Enum<PdbConversionHistoryEntrySummary.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 SummaryEnum Constants Enum Constant Description ConvertPrecheckSyncSyncRollbackUnknownEnumValueThis 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 PdbConversionHistoryEntrySummary.Actioncreate(String key)StringgetValue()static PdbConversionHistoryEntrySummary.ActionvalueOf(String name)Returns the enum constant of this type with the specified name.static PdbConversionHistoryEntrySummary.Action[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Precheckpublic static final PdbConversionHistoryEntrySummary.Action Precheck 
 - 
Convertpublic static final PdbConversionHistoryEntrySummary.Action Convert 
 - 
Syncpublic static final PdbConversionHistoryEntrySummary.Action Sync 
 - 
SyncRollbackpublic static final PdbConversionHistoryEntrySummary.Action SyncRollback 
 - 
UnknownEnumValuepublic static final PdbConversionHistoryEntrySummary.Action 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 PdbConversionHistoryEntrySummary.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 (PdbConversionHistoryEntrySummary.Action c : PdbConversionHistoryEntrySummary.Action.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static PdbConversionHistoryEntrySummary.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 name
- NullPointerException- if the argument is null
 
 - 
createpublic static PdbConversionHistoryEntrySummary.Action create(String key) 
 
- 
 
-