|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<SQLDialect>
org.jooq.SQLDialect
public enum SQLDialect
This enumeration lists all supported dialects.
Enum Constant Summary | |
---|---|
ASE
The Sybase Adaptive Server SQL dialect |
|
CUBRID
The CUBRID SQL dialect |
|
DB2
The IBM DB2 SQL dialect |
|
DERBY
The Apache Derby SQL dialect |
|
H2
The H2 SQL dialect |
|
HSQLDB
The Hypersonic SQL dialect |
|
INGRES
The Ingres dialect |
|
MYSQL
The MySQL dialect |
|
ORACLE
The Oracle dialect |
|
POSTGRES
The PostGres dialect |
|
SQL99
Deprecated. - Do not reference this pseudo-dialect. It is only used for unit testing |
|
SQLITE
The SQLite dialect |
|
SQLSERVER
The SQL Server dialect |
|
SYBASE
The Sybase dialect |
Method Summary | |
---|---|
Class<? extends Factory> |
getFactory()
|
String |
getName()
|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
@Deprecated public static final SQLDialect SQL99
public static final SQLDialect ASE
public static final SQLDialect CUBRID
public static final SQLDialect DB2
public static final SQLDialect DERBY
public static final SQLDialect H2
public static final SQLDialect HSQLDB
public static final SQLDialect INGRES
public static final SQLDialect MYSQL
public static final SQLDialect ORACLE
public static final SQLDialect POSTGRES
public static final SQLDialect SQLITE
public static final SQLDialect SQLSERVER
public static final SQLDialect SYBASE
Method Detail |
---|
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 name
NullPointerException
- if the argument is nullpublic final String getName()
public final Class<? extends Factory> getFactory()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |