public enum ColumnType extends java.lang.Enum<ColumnType>
| Enum Constant and Description |
|---|
CUSTOM_ENTITY_FIELD
自定义数据字段
|
CUSTOM_LINK
自定义链接
|
DETAIL_LINK
详细链接
|
ENTITY_FIELD
数据字段
|
UPDATE_LINK
修改链接
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.Integer |
getOrdinal()
返回枚举对应的索引值
|
static ColumnType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnType ENTITY_FIELD
public static final ColumnType UPDATE_LINK
public static final ColumnType DETAIL_LINK
public static final ColumnType CUSTOM_LINK
public static final ColumnType CUSTOM_ENTITY_FIELD
public static ColumnType[] values()
for (ColumnType c : ColumnType.values()) System.out.println(c);
public static ColumnType 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.Integer getOrdinal()