public static enum ServletFilterManager.FilterChainType extends Enum<ServletFilterManager.FilterChainType>
Enum Constant and Description |
---|
COMPONENT
Indicates component level filters.
|
ERROR
Indicates error level filters.
|
FORWARD
Indicates forward level filters.
|
INCLUDE
Indicates include level filters.
|
REQUEST
Indicates request level filters.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static ServletFilterManager.FilterChainType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServletFilterManager.FilterChainType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServletFilterManager.FilterChainType REQUEST
EngineConstants.FILTER_SCOPE_REQUEST
public static final ServletFilterManager.FilterChainType ERROR
EngineConstants.FILTER_SCOPE_ERROR
public static final ServletFilterManager.FilterChainType INCLUDE
EngineConstants.FILTER_SCOPE_INCLUDE
public static final ServletFilterManager.FilterChainType FORWARD
EngineConstants.FILTER_SCOPE_FORWARD
public static final ServletFilterManager.FilterChainType COMPONENT
public static ServletFilterManager.FilterChainType[] values()
for (ServletFilterManager.FilterChainType c : ServletFilterManager.FilterChainType.values()) System.out.println(c);
public static ServletFilterManager.FilterChainType 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 nullpublic String toString()
toString
in class Enum<ServletFilterManager.FilterChainType>
Copyright © 2007–2016 The Apache Software Foundation. All rights reserved.