public enum SqlDialect extends Enum<SqlDialect>
| Enum Constant and Description |
|---|
MARIADB |
MYSQL |
ORACLE |
POSTGRESQL |
SQLSERVER |
| Modifier and Type | Method and Description |
|---|---|
static SqlDialect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlDialect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlDialect MYSQL
public static final SqlDialect MARIADB
public static final SqlDialect ORACLE
public static final SqlDialect SQLSERVER
public static final SqlDialect POSTGRESQL
public static SqlDialect[] values()
for (SqlDialect c : SqlDialect.values()) System.out.println(c);
public static SqlDialect 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 nullCopyright © 2024–2025 Dynamic-SQL. All rights reserved.