public enum DatabaseType extends Enum<DatabaseType>
| Enum Constant and Description |
|---|
db2 |
mysql |
oracle |
postgresql |
sqlite |
sqlserver |
| Modifier and Type | Method and Description |
|---|---|
String |
getClassPathResourcePath() |
String |
getScriptSeparator() |
static DatabaseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseType oracle
public static final DatabaseType db2
public static final DatabaseType sqlserver
public static final DatabaseType sqlite
public static final DatabaseType mysql
public static final DatabaseType postgresql
public static DatabaseType[] values()
for (DatabaseType c : DatabaseType.values()) System.out.println(c);
public static DatabaseType 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 String getClassPathResourcePath()
public String getScriptSeparator()
Copyright © 2020 Sualeh Fatehi. All rights reserved.