Package com.oracle.bmc.database.model
Enum DatabaseUpgradeHistoryEntry.Source
- java.lang.Object
- 
- java.lang.Enum<DatabaseUpgradeHistoryEntry.Source>
- 
- com.oracle.bmc.database.model.DatabaseUpgradeHistoryEntry.Source
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<DatabaseUpgradeHistoryEntry.Source>
 - Enclosing class:
- DatabaseUpgradeHistoryEntry
 
 public static enum DatabaseUpgradeHistoryEntry.Source extends Enum<DatabaseUpgradeHistoryEntry.Source> implements BmcEnum The source of the Oracle Database software to be used for the upgrade.- Use DB_HOME to specify an existing Database Home to upgrade the database. The database is moved to the target Database Home and makes use of the Oracle Database software version of the target Database Home. - Use DB_VERSION to specify a generally-available Oracle Database software version to upgrade the database. - Use DB_SOFTWARE_IMAGE to specify a database software image to upgrade the database.
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description DbHomeDbSoftwareImageDbVersionUnknownEnumValueThis 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 DatabaseUpgradeHistoryEntry.Sourcecreate(String key)StringgetValue()static DatabaseUpgradeHistoryEntry.SourcevalueOf(String name)Returns the enum constant of this type with the specified name.static DatabaseUpgradeHistoryEntry.Source[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
DbHomepublic static final DatabaseUpgradeHistoryEntry.Source DbHome 
 - 
DbVersionpublic static final DatabaseUpgradeHistoryEntry.Source DbVersion 
 - 
DbSoftwareImagepublic static final DatabaseUpgradeHistoryEntry.Source DbSoftwareImage 
 - 
UnknownEnumValuepublic static final DatabaseUpgradeHistoryEntry.Source 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 DatabaseUpgradeHistoryEntry.Source[] 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 (DatabaseUpgradeHistoryEntry.Source c : DatabaseUpgradeHistoryEntry.Source.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static DatabaseUpgradeHistoryEntry.Source 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 DatabaseUpgradeHistoryEntry.Source create(String key) 
 
- 
 
-