public static enum EventProxy.ActionType extends Enum<EventProxy.ActionType>
文件名:EventProxy.java
用途:用于标记通知的类型
编码时间:2020年7月12日 上午11:24:57
修改时间:2020年7月12日 上午11:24:57
Enum Constant and Description |
---|
ELEMENT_AFTER
表示元素后置通知
|
ELEMENT_BEFORE
表示元素前置通知
|
FUNCTION_BEFORE
表示方法前置通知
|
FUNCTION_FAIL_AFTER
表示方法执行失败通知
|
FUNCTION_FINAL
表示方法最终通知
|
FUNCTION_SUCCESS_AFTER
表示方法执行成功通知
|
Modifier and Type | Method and Description |
---|---|
static EventProxy.ActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventProxy.ActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventProxy.ActionType FUNCTION_BEFORE
public static final EventProxy.ActionType ELEMENT_BEFORE
public static final EventProxy.ActionType FUNCTION_SUCCESS_AFTER
public static final EventProxy.ActionType FUNCTION_FAIL_AFTER
public static final EventProxy.ActionType ELEMENT_AFTER
public static final EventProxy.ActionType FUNCTION_FINAL
public static EventProxy.ActionType[] values()
for (EventProxy.ActionType c : EventProxy.ActionType.values()) System.out.println(c);
public static EventProxy.ActionType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2024. All rights reserved.