| 枚举常量和说明 |
|---|
MYSQL |
ORACLE |
POSTGRE_SQL |
SQL_SERVER |
| 限定符和类型 | 方法和说明 |
|---|---|
java.lang.String |
getDbType() |
java.lang.String |
getFieldComment() |
java.lang.String |
getFieldKey() |
java.lang.String |
getFieldName() |
java.lang.String |
getFieldType() |
java.lang.String |
getTableComment() |
java.lang.String |
getTableCommentsSql() |
java.lang.String |
getTableFieldsSql() |
java.lang.String |
getTableName() |
java.lang.String |
getTablesSql() |
static QuerySQL |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getDbType()
public java.lang.String getTablesSql()
public java.lang.String getTableCommentsSql()
public java.lang.String getTableFieldsSql()
public java.lang.String getTableName()
public java.lang.String getTableComment()
public java.lang.String getFieldName()
public java.lang.String getFieldType()
public java.lang.String getFieldComment()
public java.lang.String getFieldKey()