Enum DatabaseConnectionCredentials.CredentialType
- java.lang.Object
-
- java.lang.Enum<DatabaseConnectionCredentials.CredentialType>
-
- com.oracle.bmc.databasemanagement.model.DatabaseConnectionCredentials.CredentialType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<DatabaseConnectionCredentials.CredentialType>
- Enclosing class:
- DatabaseConnectionCredentials
public static enum DatabaseConnectionCredentials.CredentialType extends Enum<DatabaseConnectionCredentials.CredentialType> implements BmcEnum
The type of credential used to connect to the database.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Details
NamedCredentials
NameReference
SslDetails
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 DatabaseConnectionCredentials.CredentialType
create(String key)
String
getValue()
static DatabaseConnectionCredentials.CredentialType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DatabaseConnectionCredentials.CredentialType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NameReference
public static final DatabaseConnectionCredentials.CredentialType NameReference
-
Details
public static final DatabaseConnectionCredentials.CredentialType Details
-
SslDetails
public static final DatabaseConnectionCredentials.CredentialType SslDetails
-
NamedCredentials
public static final DatabaseConnectionCredentials.CredentialType NamedCredentials
-
UnknownEnumValue
public static final DatabaseConnectionCredentials.CredentialType 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 DatabaseConnectionCredentials.CredentialType[] 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 (DatabaseConnectionCredentials.CredentialType c : DatabaseConnectionCredentials.CredentialType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DatabaseConnectionCredentials.CredentialType 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 DatabaseConnectionCredentials.CredentialType create(String key)
-
-