|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<InterceptorConfiguration.Position>
org.infinispan.configuration.cache.InterceptorConfiguration.Position
public static enum InterceptorConfiguration.Position
Positional placing of a new custom interceptor
Enum Constant Summary | |
---|---|
FIRST
Specifies that the new interceptor is placed first in the chain. |
|
LAST
Specifies that the new interceptor is placed last in the chain. |
|
OTHER_THAN_FIRST_OR_LAST
Specifies that the new interceptor can be placed anywhere, except first or last. |
Method Summary | |
---|---|
static InterceptorConfiguration.Position |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static InterceptorConfiguration.Position[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final InterceptorConfiguration.Position FIRST
public static final InterceptorConfiguration.Position LAST
public static final InterceptorConfiguration.Position OTHER_THAN_FIRST_OR_LAST
Method Detail |
---|
public static InterceptorConfiguration.Position[] values()
for (InterceptorConfiguration.Position c : InterceptorConfiguration.Position.values()) System.out.println(c);
public static InterceptorConfiguration.Position valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
--> | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |