public enum RDBMS extends Enum<RDBMS>
Enum Constant and Description |
---|
access |
cubrid |
db2 |
defaultDB |
derby |
firebird |
gbase |
h2 |
hsqldb |
mariadb |
mongo |
mysql |
oracle |
postgresql |
sqlite |
sqlserver |
Modifier and Type | Method and Description |
---|---|
static RDBMS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RDBMS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RDBMS oracle
public static final RDBMS sqlserver
public static final RDBMS db2
public static final RDBMS derby
public static final RDBMS postgresql
public static final RDBMS mysql
public static final RDBMS mariadb
public static final RDBMS hsqldb
public static final RDBMS access
public static final RDBMS gbase
public static final RDBMS sqlite
public static final RDBMS mongo
public static final RDBMS h2
public static final RDBMS cubrid
public static final RDBMS firebird
public static final RDBMS defaultDB
public static RDBMS[] values()
for (RDBMS c : RDBMS.values()) System.out.println(c);
public static RDBMS 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 nullCopyright © 2020. All rights reserved.