public static enum DatabaseProduct.DbType extends Enum<DatabaseProduct.DbType>
Enum Constant and Description |
---|
HSQLDB |
MYSQL |
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 MYSQL
public static final DatabaseProduct.DbType SQLSERVER
public static final DatabaseProduct.DbType POSTGRES
public static final DatabaseProduct.DbType UNDEFINED
public static final DatabaseProduct.DbType HSQLDB
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 © 2008–2024 Apache Software Foundation. All rights reserved.