public enum QuerySQL extends Enum<QuerySQL>
表数据查询
| 枚举常量和说明 |
|---|
MYSQL |
ORACLE |
POSTGRE_SQL |
SQL_SERVER |
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getDbType() |
String |
getFieldComment() |
String |
getFieldKey() |
String |
getFieldName() |
String |
getFieldType() |
String |
getTableComment() |
String |
getTableCommentsSql() |
String |
getTableFieldsSql() |
String |
getTableName() |
String |
getTablesSql() |
static QuerySQL |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuerySQL[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuerySQL MYSQL
public static final QuerySQL ORACLE
public static final QuerySQL SQL_SERVER
public static final QuerySQL POSTGRE_SQL
public static QuerySQL[] values()
for (QuerySQL c : QuerySQL.values()) System.out.println(c);
public static QuerySQL 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 nullpublic String getDbType()
public String getTablesSql()
public String getTableCommentsSql()
public String getTableFieldsSql()
public String getTableName()
public String getTableComment()
public String getFieldName()
public String getFieldType()
public String getFieldComment()
public String getFieldKey()
Copyright © 2017. All rights reserved.