public enum InterceptionType extends java.lang.Enum<InterceptionType>
Enum Constant and Description |
---|
AROUND_INVOKE |
AROUND_TIMEOUT |
POST_ACTIVATE |
POST_CONSTRUCT |
PRE_DESTROY |
PRE_PASSIVATE |
Modifier and Type | Method and Description |
---|---|
static InterceptionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InterceptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterceptionType AROUND_INVOKE
public static final InterceptionType AROUND_TIMEOUT
public static final InterceptionType POST_CONSTRUCT
public static final InterceptionType PRE_DESTROY
public static final InterceptionType PRE_PASSIVATE
public static final InterceptionType POST_ACTIVATE
public static InterceptionType[] values()
for (InterceptionType c : InterceptionType.values()) System.out.println(c);
public static InterceptionType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null