public enum Dialect extends Enum<Dialect>
Date: 2017-12-29
| Enum Constant and Description |
|---|
db2 |
mysql |
oracle |
postgresql |
sqlserver |
| Modifier and Type | Method and Description |
|---|---|
static Dialect |
forName(String dialect) |
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 mysql
public static final Dialect oracle
public static final Dialect sqlserver
public static final Dialect postgresql
public static final Dialect db2
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 © 2084–2018 dukeware.com. All rights reserved.