public static enum DatabaseProduct.DbType extends Enum<DatabaseProduct.DbType>
| Enum Constant and Description |
|---|
CUSTOM |
DERBY |
MYSQL |
ORACLE |
POSTGRES |
SQLSERVER |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static DatabaseProduct.DbType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseProduct.DbType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseProduct.DbType DERBY
public static final DatabaseProduct.DbType MYSQL
public static final DatabaseProduct.DbType POSTGRES
public static final DatabaseProduct.DbType ORACLE
public static final DatabaseProduct.DbType SQLSERVER
public static final DatabaseProduct.DbType CUSTOM
public static final DatabaseProduct.DbType UNDEFINED
public static DatabaseProduct.DbType[] values()
for (DatabaseProduct.DbType c : DatabaseProduct.DbType.values()) System.out.println(c);
public static DatabaseProduct.DbType 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 © 2024 The Apache Software Foundation. All rights reserved.