public enum InterceptorKind extends Enum<InterceptorKind>
| Enum Constant and Description | 
|---|
| AROUNDAround advice interception. | 
| AROUND_CONSTRUCTAround advice interception. | 
| INTRODUCTIONIntroduction advice interception. | 
| POST_CONSTRUCTPost construct interception. | 
| PRE_DESTROYPreDestroy interception. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getAnnotationName() | 
| Class<? extends Annotation> | getAnnotationType() | 
| static InterceptorKind | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static InterceptorKind[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final InterceptorKind AROUND
Aroundpublic static final InterceptorKind AROUND_CONSTRUCT
AroundConstructpublic static final InterceptorKind INTRODUCTION
Introductionpublic static final InterceptorKind POST_CONSTRUCT
PostConstructpublic static final InterceptorKind PRE_DESTROY
PreDestroypublic static InterceptorKind[] values()
for (InterceptorKind c : InterceptorKind.values()) System.out.println(c);
public static InterceptorKind 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 Class<? extends Annotation> getAnnotationType()
public String getAnnotationName()