Enum DatabaseType
- java.lang.Object
-
- java.lang.Enum<DatabaseType>
-
- de.akquinet.jbosscc.guttenbase.connector.DatabaseType
-
- All Implemented Interfaces:
Serializable
,Comparable<DatabaseType>
public enum DatabaseType extends Enum<DatabaseType>
Denote known/handled data bases. Easy to extend...© 2012-2034 akquinet tech@spree
- Author:
- M. Dahm
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DB2
DERBY
EXPORT_DUMP
GENERIC
H2DB
HSQLDB
IMPORT_DUMP
MARIADB
MOCK
MS_ACCESS
MSSQL
MYSQL
ORACLE
POSTGRESQL
SYBASE
-
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
-
GENERIC
public static final DatabaseType GENERIC
-
MOCK
public static final DatabaseType MOCK
-
EXPORT_DUMP
public static final DatabaseType EXPORT_DUMP
-
IMPORT_DUMP
public static final DatabaseType IMPORT_DUMP
-
MYSQL
public static final DatabaseType MYSQL
-
MARIADB
public static final DatabaseType MARIADB
-
POSTGRESQL
public static final DatabaseType POSTGRESQL
-
MSSQL
public static final DatabaseType MSSQL
-
MS_ACCESS
public static final DatabaseType MS_ACCESS
-
HSQLDB
public static final DatabaseType HSQLDB
-
H2DB
public static final DatabaseType H2DB
-
DERBY
public static final DatabaseType DERBY
-
DB2
public static final DatabaseType DB2
-
SYBASE
public static final DatabaseType SYBASE
-
ORACLE
public static final DatabaseType ORACLE
-
-
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
-
-