Package com.oracle.bmc.psql.model
Enum UpdateDbConfigParams.ApplyConfig
- java.lang.Object
-
- java.lang.Enum<UpdateDbConfigParams.ApplyConfig>
-
- com.oracle.bmc.psql.model.UpdateDbConfigParams.ApplyConfig
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<UpdateDbConfigParams.ApplyConfig>
- Enclosing class:
- UpdateDbConfigParams
public static enum UpdateDbConfigParams.ApplyConfig extends Enum<UpdateDbConfigParams.ApplyConfig> implements BmcEnum
Whether a configuration update requires a restart of the database instance or a reload of the configuration.Some configuration changes require a restart of database instances to be applied.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UpdateDbConfigParams.ApplyConfig
create(String key)
String
getValue()
static UpdateDbConfigParams.ApplyConfig
valueOf(String name)
Returns the enum constant of this type with the specified name.static UpdateDbConfigParams.ApplyConfig[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Restart
public static final UpdateDbConfigParams.ApplyConfig Restart
-
Reload
public static final UpdateDbConfigParams.ApplyConfig Reload
-
-
Method Detail
-
values
public static UpdateDbConfigParams.ApplyConfig[] 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 (UpdateDbConfigParams.ApplyConfig c : UpdateDbConfigParams.ApplyConfig.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UpdateDbConfigParams.ApplyConfig 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 UpdateDbConfigParams.ApplyConfig create(String key)
-
-