public enum StatementDialect extends Enum<StatementDialect>
| Enum Constant and Description |
|---|
DERBY |
H2 |
HSQL |
MSSQL |
MYSQL |
POSTGRESQL |
| Modifier and Type | Method and Description |
|---|---|
static StatementDialect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatementDialect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatementDialect MYSQL
public static final StatementDialect POSTGRESQL
public static final StatementDialect H2
public static final StatementDialect HSQL
public static final StatementDialect DERBY
public static final StatementDialect MSSQL
public static StatementDialect[] values()
for (StatementDialect c : StatementDialect.values()) System.out.println(c);
public static StatementDialect 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 © 2016 UiO. All rights reserved.