Package org.infinispan.persistence.jdbc
Enum DatabaseType
- java.lang.Object
-
- java.lang.Enum<DatabaseType>
-
- org.infinispan.persistence.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
All Methods Static Methods Concrete Methods Modifier and Type Method Description 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.
-
-
-
Enum Constant Detail
-
MARIA_DB
public static final DatabaseType MARIA_DB
-
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
-
DB2_390
public static final DatabaseType DB2_390
-
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
-
SYBASE
public static final DatabaseType SYBASE
-
-
Method Detail
-
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 nameNullPointerException
- if the argument is null
-
-