程序包 infra.aop
类 MethodMatcher.ClassFilterAwareUnionIntroductionAwareMethodMatcher
java.lang.Object
infra.aop.MethodMatcher.UnionMethodMatcher
infra.aop.MethodMatcher.ClassFilterAwareUnionMethodMatcher
infra.aop.MethodMatcher.ClassFilterAwareUnionIntroductionAwareMethodMatcher
- 所有已实现的接口:
IntroductionAwareMethodMatcher,MethodMatcher,Serializable
- 封闭接口:
- MethodMatcher
public static class MethodMatcher.ClassFilterAwareUnionIntroductionAwareMethodMatcher
extends MethodMatcher.ClassFilterAwareUnionMethodMatcher
implements IntroductionAwareMethodMatcher
MethodMatcher implementation for a union of two given MethodMatchers
of which at least one is an IntroductionAwareMethodMatcher,
supporting an associated ClassFilter per MethodMatcher.
- 另请参阅:
-
嵌套类概要
从接口继承的嵌套类/接口 infra.aop.MethodMatcher
MethodMatcher.ClassFilterAwareUnionIntroductionAwareMethodMatcher, MethodMatcher.ClassFilterAwareUnionMethodMatcher, MethodMatcher.IntersectionIntroductionAwareMethodMatcher, MethodMatcher.IntersectionMethodMatcher, MethodMatcher.NegateMethodMatcher, MethodMatcher.UnionIntroductionAwareMethodMatcher, MethodMatcher.UnionMethodMatcher -
字段概要
字段从类继承的字段 infra.aop.MethodMatcher.UnionMethodMatcher
mm1, mm2从接口继承的字段 infra.aop.MethodMatcher
TRUE -
构造器概要
构造器限定符构造器说明privateClassFilterAwareUnionIntroductionAwareMethodMatcher(MethodMatcher mm1, ClassFilter cf1, MethodMatcher mm2, ClassFilter cf2) -
方法概要
从类继承的方法 infra.aop.MethodMatcher.ClassFilterAwareUnionMethodMatcher
equals, hashCode, matchesClass1, matchesClass2, toString从类继承的方法 infra.aop.MethodMatcher.UnionMethodMatcher
isRuntime, matches, matches从接口继承的方法 infra.aop.MethodMatcher
isRuntime, matches, matches
-
字段详细资料
-
serialVersionUID
private static final long serialVersionUID- 另请参阅:
-
-
构造器详细资料
-
ClassFilterAwareUnionIntroductionAwareMethodMatcher
private ClassFilterAwareUnionIntroductionAwareMethodMatcher(MethodMatcher mm1, ClassFilter cf1, MethodMatcher mm2, ClassFilter cf2)
-
-
方法详细资料
-
matches
从接口复制的说明:IntroductionAwareMethodMatcherPerform static checking whether the given method matches. This may be invoked instead of the 2-argMethodMatcher.matches(java.lang.reflect.Method, Class)method if the caller supports the extended IntroductionAwareMethodMatcher interface.- 指定者:
matches在接口中IntroductionAwareMethodMatcher- 参数:
method- the candidate methodtargetClass- the target classhasIntroductions-trueif the object on whose behalf we are asking is the subject on one or more introductions;falseotherwise- 返回:
- whether or not this method matches statically
-