Package com.oracle.bmc.goldengate.model
Enum PostgresqlConnection.TechnologyType
- java.lang.Object
-
- java.lang.Enum<PostgresqlConnection.TechnologyType>
-
- com.oracle.bmc.goldengate.model.PostgresqlConnection.TechnologyType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<PostgresqlConnection.TechnologyType>
- Enclosing class:
- PostgresqlConnection
public static enum PostgresqlConnection.TechnologyType extends Enum<PostgresqlConnection.TechnologyType> implements BmcEnum
The PostgreSQL technology type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AmazonAuroraPostgresql
AmazonRdsPostgresql
AzureCosmosDbForPostgresql
AzurePostgresql
GoogleAlloyDbForPostgresql
GoogleCloudSqlPostgresql
OciPostgresql
PostgresqlServer
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 PostgresqlConnection.TechnologyType
create(String key)
String
getValue()
static PostgresqlConnection.TechnologyType
valueOf(String name)
Returns the enum constant of this type with the specified name.static PostgresqlConnection.TechnologyType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OciPostgresql
public static final PostgresqlConnection.TechnologyType OciPostgresql
-
PostgresqlServer
public static final PostgresqlConnection.TechnologyType PostgresqlServer
-
AmazonAuroraPostgresql
public static final PostgresqlConnection.TechnologyType AmazonAuroraPostgresql
-
AmazonRdsPostgresql
public static final PostgresqlConnection.TechnologyType AmazonRdsPostgresql
-
AzurePostgresql
public static final PostgresqlConnection.TechnologyType AzurePostgresql
-
AzureCosmosDbForPostgresql
public static final PostgresqlConnection.TechnologyType AzureCosmosDbForPostgresql
-
GoogleCloudSqlPostgresql
public static final PostgresqlConnection.TechnologyType GoogleCloudSqlPostgresql
-
GoogleAlloyDbForPostgresql
public static final PostgresqlConnection.TechnologyType GoogleAlloyDbForPostgresql
-
UnknownEnumValue
public static final PostgresqlConnection.TechnologyType 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 PostgresqlConnection.TechnologyType[] 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 (PostgresqlConnection.TechnologyType c : PostgresqlConnection.TechnologyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PostgresqlConnection.TechnologyType 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 PostgresqlConnection.TechnologyType create(String key)
-
-