public enum InterceptionType extends java.lang.Enum<InterceptionType>
Identifies the kind of lifecycle callback, Jakarta Enterprise Bean timeout method or business method interception.
| Enum Constant and Description | 
|---|
AROUND_CONSTRUCT
Intercepts a constructor invocation 
 | 
AROUND_INVOKE
Intercepts method invocation 
 | 
AROUND_TIMEOUT
Intercepts a timeout 
 | 
POST_ACTIVATE
Intercepts bean activation, only called for Jakarta Enterprise Beans 
 | 
POST_CONSTRUCT
Intercepts bean construction 
 | 
PRE_DESTROY
Intercepts bean destruction 
 | 
PRE_PASSIVATE
Intercepts bean passivation, only called for Jakarta Enterprise Beans 
 | 
| 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 AROUND_CONSTRUCT
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