public enum Dialect extends Enum<Dialect>
Enum Constant and Description |
---|
DB2
DB2 SQL dialect.
|
H2
H2 SQL dialect.
|
MYSQL
MySQL SQL dialect.
|
ORACLE
Oracle SQL dialect.
|
POSTGRESQL
PostgreSQL SQL dialect.
|
SQLSERVER
SQLServer SQL dialect.
|
UNKNOWN
Unknown implementation (can be used when implementing
new engines that are not distributed with the library.
|
Modifier and Type | Method and Description |
---|---|
static Dialect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dialect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dialect ORACLE
public static final Dialect POSTGRESQL
public static final Dialect MYSQL
public static final Dialect SQLSERVER
public static final Dialect H2
public static final Dialect DB2
public static final Dialect UNKNOWN
public static Dialect[] values()
for (Dialect c : Dialect.values()) System.out.println(c);
public static Dialect 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 © 2014 Feedzai. All Rights Reserved.