public enum DatabaseType extends Enum<DatabaseType>
| Enum Constant and Description |
|---|
HSQLDB |
ORACLE |
POSTGRE_SQL |
SQL_SERVER |
| Modifier and Type | Field and Description |
|---|---|
int |
defaultPort |
String |
geometryColumnName |
String |
innerName |
String |
name |
String |
officialName |
| Modifier and Type | Method and Description |
|---|---|
static String[] |
getAllForGenerateCode() |
static String[] |
getAllForNewProject() |
static DatabaseType |
getByName(String name) |
static DatabaseType |
getByOfficialName(String officialName) |
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 SQL_SERVER
public static final DatabaseType POSTGRE_SQL
public static final DatabaseType HSQLDB
public String name
public String innerName
public String officialName
public String geometryColumnName
public int defaultPort
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 static DatabaseType getByName(String name)
public static DatabaseType getByOfficialName(String officialName)
public static String[] getAllForGenerateCode()
public static String[] getAllForNewProject()
Copyright © 2020. All rights reserved.