Package org.xipki.datasource
Enum DatabaseType
- java.lang.Object
-
- java.lang.Enum<DatabaseType>
-
- org.xipki.datasource.DatabaseType
-
- All Implemented Interfaces:
Serializable,Comparable<DatabaseType>
public enum DatabaseType extends Enum<DatabaseType>
Database type.- Since:
- 2.0.0
- Author:
- Lijun Liao (xipki)
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DatabaseTypeforDataSourceClass(String datasourceClass)static DatabaseTypeforDriver(String driverClass)static DatabaseTypeforJdbcUrl(String url)booleansupportsInArray()static DatabaseTypevalueOf(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
-
H2
public static final DatabaseType H2
-
DB2
public static final DatabaseType DB2
-
HSQL
public static final DatabaseType HSQL
-
MYSQL
public static final DatabaseType MYSQL
-
MARIADB
public static final DatabaseType MARIADB
-
ORACLE
public static final DatabaseType ORACLE
-
POSTGRES
public static final DatabaseType POSTGRES
-
UNKNOWN
public static final DatabaseType UNKNOWN
-
-
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
-
supportsInArray
public boolean supportsInArray()
-
forDriver
public static DatabaseType forDriver(String driverClass)
-
forDataSourceClass
public static DatabaseType forDataSourceClass(String datasourceClass)
-
forJdbcUrl
public static DatabaseType forJdbcUrl(String url)
-
-