Uses of Class
org.aspectj.lang.reflect.AdviceKind

Packages that use AdviceKind
org.aspectj.internal.lang.reflect   
org.aspectj.lang.reflect Contains interfaces that extend Signature to provide additional information about each possible join point signature. 
 

Uses of AdviceKind in org.aspectj.internal.lang.reflect
 

Methods in org.aspectj.internal.lang.reflect that return AdviceKind
 AdviceKind AdviceImpl.getKind()
           
 

Methods in org.aspectj.internal.lang.reflect with parameters of type AdviceKind
 Advice[] AjTypeImpl.getAdvice(AdviceKind... ofType)
           
 Advice[] AjTypeImpl.getDeclaredAdvice(AdviceKind... ofType)
           
 

Uses of AdviceKind in org.aspectj.lang.reflect
 

Methods in org.aspectj.lang.reflect that return AdviceKind
 AdviceKind Advice.getKind()
          The kind of advice (before, after-returning, after-throwing, etc.)
static AdviceKind AdviceKind.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AdviceKind[] AdviceKind.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.aspectj.lang.reflect with parameters of type AdviceKind
 Advice[] AjType.getAdvice(AdviceKind... ofTypes)
          Returns all of the advice for this type, of an advice kind contained in the parameter list.
 Advice[] AjType.getDeclaredAdvice(AdviceKind... ofTypes)
          Returns all of the advice declared by this type, of an advice kind contained in the parameter list.