public enum InterceptionType extends Enum<InterceptionType>
Identifies the kind of lifecycle callback, EJB 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 EJBs
|
POST_CONSTRUCT
Intercepts bean construction
|
PRE_DESTROY
Intercepts bean destruction
|
PRE_PASSIVATE
Intercepts bean passivation, only called for EJBs
|
Modifier and Type | Method and Description |
---|---|
static InterceptionType |
valueOf(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(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 © 1996-2013, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.