public enum RDBObjectType extends Enum<RDBObjectType> implements ObjectType
| 枚举常量和说明 |
|---|
column |
constraint |
dataType |
foreignKey |
function |
index |
key |
table |
view |
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getId() |
static RDBObjectType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static RDBObjectType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetNamepublic static final RDBObjectType table
public static final RDBObjectType column
public static final RDBObjectType foreignKey
public static final RDBObjectType constraint
public static final RDBObjectType key
public static final RDBObjectType dataType
public static final RDBObjectType index
public static final RDBObjectType view
public static final RDBObjectType function
public static RDBObjectType[] values()
for (RDBObjectType c : RDBObjectType.values()) System.out.println(c);
public static RDBObjectType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getId()
getId 在接口中 ObjectTypeCopyright © 2025. All rights reserved.