public enum ConfiguredDatabaseType extends Enum<ConfiguredDatabaseType>
Enum Constant and Description |
---|
HSQL |
MS_SQL |
MY_SQL |
ORACLE_12_C |
POSTGRESQL |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static ConfiguredDatabaseType |
identifyByConnectionUrl(String connectionUrl) |
static ConfiguredDatabaseType |
identifyByHibernateDialect(String hibernateDialect) |
static ConfiguredDatabaseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfiguredDatabaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfiguredDatabaseType POSTGRESQL
public static final ConfiguredDatabaseType MY_SQL
public static final ConfiguredDatabaseType ORACLE_12_C
public static final ConfiguredDatabaseType MS_SQL
public static final ConfiguredDatabaseType HSQL
public static final ConfiguredDatabaseType UNKNOWN
public static ConfiguredDatabaseType[] values()
for (ConfiguredDatabaseType c : ConfiguredDatabaseType.values()) System.out.println(c);
public static ConfiguredDatabaseType 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 ConfiguredDatabaseType identifyByConnectionUrl(String connectionUrl)
public static ConfiguredDatabaseType identifyByHibernateDialect(String hibernateDialect)
Copyright © 2021 Atlassian. All rights reserved.