org.infinispan.loaders.jdbc
Enum DatabaseType
java.lang.Object
java.lang.Enum<DatabaseType>
org.infinispan.loaders.jdbc.DatabaseType
- All Implemented Interfaces:
- Serializable, Comparable<DatabaseType>
public enum DatabaseType
- extends Enum<DatabaseType>
Supported database dialects for the JDBC cache stores
- Since:
- 4.1
- Author:
- Manik Surtani
Method Summary |
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. |
MYSQL
public static final DatabaseType MYSQL
POSTGRES
public static final DatabaseType POSTGRES
DERBY
public static final DatabaseType DERBY
HSQL
public static final DatabaseType HSQL
H2
public static final DatabaseType H2
SQLITE
public static final DatabaseType SQLITE
DB2
public static final DatabaseType DB2
INFORMIX
public static final DatabaseType INFORMIX
INTERBASE
public static final DatabaseType INTERBASE
FIREBIRD
public static final DatabaseType FIREBIRD
SQL_SERVER
public static final DatabaseType SQL_SERVER
ACCESS
public static final DatabaseType ACCESS
ORACLE
public static final DatabaseType ORACLE
values
public static DatabaseType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (DatabaseType c : DatabaseType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static DatabaseType valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2010 JBoss, a division of Red Hat. All Rights Reserved.