public enum MappingEventTypes extends Enum<MappingEventTypes> implements EventType
| 枚举常量和说明 |
|---|
delete_after |
delete_before |
insert_after |
insert_before |
save_after |
save_before |
select_before |
select_done |
select_wrapper_column |
select_wrapper_done |
update_after |
update_before |
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getId() |
static MappingEventTypes |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static MappingEventTypes[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final MappingEventTypes select_before
public static final MappingEventTypes select_wrapper_column
public static final MappingEventTypes select_wrapper_done
public static final MappingEventTypes select_done
public static final MappingEventTypes update_before
public static final MappingEventTypes update_after
public static final MappingEventTypes insert_before
public static final MappingEventTypes insert_after
public static final MappingEventTypes delete_before
public static final MappingEventTypes delete_after
public static final MappingEventTypes save_before
public static final MappingEventTypes save_after
public static MappingEventTypes[] values()
for (MappingEventTypes c : MappingEventTypes.values()) System.out.println(c);
public static MappingEventTypes valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2025. All rights reserved.