Enum DatabaseMetadata.DatabaseType
- java.lang.Object
-
- java.lang.Enum<DatabaseMetadata.DatabaseType>
-
- org.kie.workbench.common.screens.datasource.management.metadata.DatabaseMetadata.DatabaseType
-
- All Implemented Interfaces:
Serializable,Comparable<DatabaseMetadata.DatabaseType>
- Enclosing class:
- DatabaseMetadata
public static enum DatabaseMetadata.DatabaseType extends Enum<DatabaseMetadata.DatabaseType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DatabaseMetadata.DatabaseTypevalueOf(String name)Returns the enum constant of this type with the specified name.static DatabaseMetadata.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 DatabaseMetadata.DatabaseType H2
-
MYSQL
public static final DatabaseMetadata.DatabaseType MYSQL
-
MARIADB
public static final DatabaseMetadata.DatabaseType MARIADB
-
POSTGRESQL
public static final DatabaseMetadata.DatabaseType POSTGRESQL
-
ORACLE
public static final DatabaseMetadata.DatabaseType ORACLE
-
SQLSERVER
public static final DatabaseMetadata.DatabaseType SQLSERVER
-
DB2
public static final DatabaseMetadata.DatabaseType DB2
-
-
Method Detail
-
values
public static DatabaseMetadata.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 (DatabaseMetadata.DatabaseType c : DatabaseMetadata.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 DatabaseMetadata.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
-
-