Package org.infinispan.persistence.jdbc
Enum DatabaseType
- java.lang.Object
-
- java.lang.Enum<DatabaseType>
-
- org.infinispan.persistence.jdbc.DatabaseType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DatabaseType>
public enum DatabaseType extends java.lang.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(java.lang.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
-
ACCESS
public static final DatabaseType ACCESS
-
DB2
public static final DatabaseType DB2
-
DB2_390
public static final DatabaseType DB2_390
-
DERBY
public static final DatabaseType DERBY
-
FIREBIRD
public static final DatabaseType FIREBIRD
-
H2
public static final DatabaseType H2
-
HSQL
public static final DatabaseType HSQL
-
INFORMIX
public static final DatabaseType INFORMIX
-
INTERBASE
public static final DatabaseType INTERBASE
-
MARIA_DB
public static final DatabaseType MARIA_DB
-
MYSQL
public static final DatabaseType MYSQL
-
ORACLE
public static final DatabaseType ORACLE
-
ORACLE_XE
public static final DatabaseType ORACLE_XE
-
POSTGRES
public static final DatabaseType POSTGRES
-
SQLITE
public static final DatabaseType SQLITE
-
SQL_SERVER
public static final DatabaseType SQL_SERVER
-
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(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-