public static enum IdentifierProfile.ObjectGroup extends Enum<IdentifierProfile.ObjectGroup>
某些数据库对不同对象类型使用不同的大小写规则:
| Enum Constant and Description |
|---|
COLUMN_GROUP
列组(column)
|
NAME_GROUP
名称组(catalog, schema, table, view, procedure, trigger)
|
ROUTINE_GROUP
函数组(function)
|
| Modifier and Type | Method and Description |
|---|---|
static IdentifierProfile.ObjectGroup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IdentifierProfile.ObjectGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdentifierProfile.ObjectGroup NAME_GROUP
public static final IdentifierProfile.ObjectGroup COLUMN_GROUP
public static final IdentifierProfile.ObjectGroup ROUTINE_GROUP
某些数据库函数名规则与表名不同
public static IdentifierProfile.ObjectGroup[] values()
for (IdentifierProfile.ObjectGroup c : IdentifierProfile.ObjectGroup.values()) System.out.println(c);
public static IdentifierProfile.ObjectGroup 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 null