public enum FieldType extends Enum<FieldType>
| 枚举常量和说明 |
|---|
LOCK_VERSION
乐观锁字段
|
LOGIC_DELETED
逻辑删除字段
|
PRIMARY_ID
主键字段
|
public static final FieldType PRIMARY_ID
public static final FieldType LOGIC_DELETED
public static final FieldType LOCK_VERSION
public static FieldType[] values()
for (FieldType c : FieldType.values()) System.out.println(c);
public static FieldType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2021. All rights reserved.