public enum DialectNameEnum extends Enum<DialectNameEnum>
定义yue-library支持的所有数据库方言
Enum Constant and Description |
---|
ANSI
SQL92、SQL99
|
DM
达梦
|
MYSQL
MySQL
|
POSTGRESQL
PostgreSQL
|
Modifier and Type | Method and Description |
---|---|
static DialectNameEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DialectNameEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DialectNameEnum ANSI
public static final DialectNameEnum MYSQL
public static final DialectNameEnum POSTGRESQL
public static final DialectNameEnum DM
public static DialectNameEnum[] values()
for (DialectNameEnum c : DialectNameEnum.values()) System.out.println(c);
public static DialectNameEnum 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 © 2022 Pivotal Software, Inc.. All rights reserved.