Enum DatabaseParameterSummary.Constraint
- java.lang.Object
-
- java.lang.Enum<DatabaseParameterSummary.Constraint>
-
- com.oracle.bmc.databasemanagement.model.DatabaseParameterSummary.Constraint
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<DatabaseParameterSummary.Constraint>
- Enclosing class:
- DatabaseParameterSummary
public static enum DatabaseParameterSummary.Constraint extends Enum<DatabaseParameterSummary.Constraint> implements BmcEnum
Applicable in case of Oracle Real Application Clusters (Oracle RAC) databases.A UNIQUE parameter is one which is unique to each Oracle Real Application Clusters (Oracle RAC) instance. For example, the parameter INSTANCE_NUMBER must have different values in each instance. An IDENTICAL parameter must have the same value for every instance. For example, the parameter DB_BLOCK_SIZE must have the same value in all instances.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Identical
None
Unique
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 DatabaseParameterSummary.Constraint
create(String key)
String
getValue()
static DatabaseParameterSummary.Constraint
valueOf(String name)
Returns the enum constant of this type with the specified name.static DatabaseParameterSummary.Constraint[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Unique
public static final DatabaseParameterSummary.Constraint Unique
-
Identical
public static final DatabaseParameterSummary.Constraint Identical
-
None
public static final DatabaseParameterSummary.Constraint None
-
UnknownEnumValue
public static final DatabaseParameterSummary.Constraint 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 DatabaseParameterSummary.Constraint[] 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 (DatabaseParameterSummary.Constraint c : DatabaseParameterSummary.Constraint.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DatabaseParameterSummary.Constraint 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 DatabaseParameterSummary.Constraint create(String key)
-
-