public enum Dbms extends Enum<Dbms>
Enum Constant and Description |
---|
DB2 |
GENERIC |
H2 |
MARIADB |
MSSQL |
MYSQL |
NONE |
ORACLE |
POSTGRESQL |
Modifier and Type | Field and Description |
---|---|
protected static org.apache.logging.log4j.Logger |
log |
Modifier and Type | Method and Description |
---|---|
static IDbmsSupport |
findDbmsSupportByProduct(String product,
String productVersion) |
IDbmsSupport |
getDbmsSupport() |
String |
getKey() |
String |
getProductName() |
static Dbms |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dbms[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dbms NONE
public static final Dbms GENERIC
public static final Dbms ORACLE
public static final Dbms MSSQL
public static final Dbms DB2
public static final Dbms H2
public static final Dbms MYSQL
public static final Dbms MARIADB
public static final Dbms POSTGRESQL
public static Dbms[] values()
for (Dbms c : Dbms.values()) System.out.println(c);
public static Dbms valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getKey()
public String getProductName()
public static IDbmsSupport findDbmsSupportByProduct(String product, String productVersion)
public IDbmsSupport getDbmsSupport() throws IllegalAccessException, InstantiationException
Copyright © 2023 Frank!Framework. All rights reserved.