public enum InheritType extends Enum<InheritType>
| 枚举常量和说明 |
|---|
ALL
表 与 字段 都继承
|
DEFAULT
使用全局默认值
DbMapping.inheritType(Class) } |
FIELD
字段继承
|
NONE
不继承
|
TABLE
继承
SearchBean 注解 |
public static final InheritType DEFAULT
DbMapping.inheritType(Class) }public static final InheritType NONE
public static final InheritType TABLE
SearchBean 注解public static final InheritType FIELD
public static final InheritType ALL
public static InheritType[] values()
for (InheritType c : InheritType.values()) System.out.println(c);
public static InheritType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2024. All rights reserved.