@Generated(value="OracleSDKGenerator", comments="API Version: 20230518") public enum PrimaryKeyCompatibility extends Enum<PrimaryKeyCompatibility> implements BmcEnum
Primary Key Compatibility option. IGNORE_MISSING_PKS - Make the instance, schema, or table dump utility ignore any missing primary keys when the dump is carried out, CREATE_INVISIBLE_PKS - Add a flag in the dump metadata to notify MySQL Shell’s dump loading utility to add primary keys in invisible columns, for each table that does not contain a primary key.
Enum Constant and Description |
---|
CreateInvisiblePks |
IgnoreMissingPks |
None |
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by this
version of the SDK.
|
Modifier and Type | Method and Description |
---|---|
static PrimaryKeyCompatibility |
create(String key) |
String |
getValue() |
static PrimaryKeyCompatibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrimaryKeyCompatibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrimaryKeyCompatibility None
public static final PrimaryKeyCompatibility IgnoreMissingPks
public static final PrimaryKeyCompatibility CreateInvisiblePks
public static final PrimaryKeyCompatibility UnknownEnumValue
public static PrimaryKeyCompatibility[] values()
for (PrimaryKeyCompatibility c : PrimaryKeyCompatibility.values()) System.out.println(c);
public static PrimaryKeyCompatibility valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static PrimaryKeyCompatibility create(String key)
Copyright © 2016–2024. All rights reserved.