public static enum WebEvent.EVENT extends Enum<WebEvent.EVENT>
Enum Constant and Description |
---|
REQUEST_ATTR_ADDED
请求属性添加
|
REQUEST_ATTR_REMOVED
请求属性移除
|
REQUEST_ATTR_REPLACED
请求属性替换
|
REQUEST_COMPLETED
完成控制器方法请求事件
|
REQUEST_DESTROYED
请求销毁事件
|
REQUEST_INITIALIZED
请求初始化事件
|
REQUEST_RECEIVED
接收控制器方法请求事件
|
REQUEST_UNEXPECTED_ERROR
控制器方法执行过程中发生异常错误
|
SERVLET_CONTEXT_ATTR_ADDED
容器属性添加
|
SERVLET_CONTEXT_ATTR_REMOVED
容器属性移除
|
SERVLET_CONTEXT_ATTR_REPLACED
容器属性替换
|
SERVLET_CONTEXT_DESTROYED
容器销毁事件
|
SERVLET_CONTEXT_INITIALIZED
容器初始化事件
|
SESSION_ATTR_ADDED
会话属性添加
|
SESSION_ATTR_REMOVED
会话属性移除
|
SESSION_ATTR_REPLACED
会话属性替换
|
SESSION_CREATED
会话创建事件
|
SESSION_DESTROYED
会话销毁事件
|
Modifier and Type | Method and Description |
---|---|
static WebEvent.EVENT |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebEvent.EVENT[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebEvent.EVENT SERVLET_CONTEXT_INITIALIZED
public static final WebEvent.EVENT SERVLET_CONTEXT_DESTROYED
public static final WebEvent.EVENT SERVLET_CONTEXT_ATTR_ADDED
public static final WebEvent.EVENT SERVLET_CONTEXT_ATTR_REMOVED
public static final WebEvent.EVENT SERVLET_CONTEXT_ATTR_REPLACED
public static final WebEvent.EVENT SESSION_CREATED
public static final WebEvent.EVENT SESSION_DESTROYED
public static final WebEvent.EVENT SESSION_ATTR_ADDED
public static final WebEvent.EVENT SESSION_ATTR_REMOVED
public static final WebEvent.EVENT SESSION_ATTR_REPLACED
public static final WebEvent.EVENT REQUEST_INITIALIZED
public static final WebEvent.EVENT REQUEST_DESTROYED
public static final WebEvent.EVENT REQUEST_ATTR_ADDED
public static final WebEvent.EVENT REQUEST_ATTR_REMOVED
public static final WebEvent.EVENT REQUEST_ATTR_REPLACED
public static final WebEvent.EVENT REQUEST_RECEIVED
public static final WebEvent.EVENT REQUEST_COMPLETED
public static final WebEvent.EVENT REQUEST_UNEXPECTED_ERROR
public static WebEvent.EVENT[] values()
for (WebEvent.EVENT c : WebEvent.EVENT.values()) System.out.println(c);
public static WebEvent.EVENT 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 © 2022. All rights reserved.