Uses of Interface
org.proxy4j.core.filter.MethodFilter
-
Packages that use MethodFilter Package Description org.proxy4j.core.build org.proxy4j.core.filter org.proxy4j.core.reflect -
-
Uses of MethodFilter in org.proxy4j.core.build
Methods in org.proxy4j.core.build with parameters of type MethodFilter Modifier and Type Method Description InterceptorCreator<T>InterceptorBindingBuilder. using(MethodFilter filter, org.aopalliance.intercept.MethodInterceptor... interceptors)Uses the given method filter to selectively bind methods on the class of typeTto the given chain of interceptors.InterceptorCreator<T>InterceptorBindingBuilder. using(MethodFilter filter, InterceptorFactory factory)Uses the given method filter to selectively bind methods on the class of typeTto a chain of interceptors produced by the given factory. -
Uses of MethodFilter in org.proxy4j.core.filter
Classes in org.proxy4j.core.filter that implement MethodFilter Modifier and Type Class Description classAnnotationFilter<T extends Annotation>An implementation ofMethodFilterthat selects methods marked with a given annotation. -
Uses of MethodFilter in org.proxy4j.core.reflect
Methods in org.proxy4j.core.reflect with parameters of type MethodFilter Modifier and Type Method Description Collection<Method>BasicMethodExtractor. getMethods(MethodFilter filter)Returns all methods fromMethodExtractor.getProxyableMethods(), filered by the givenMethodFilter.Collection<Method>InheritableMethodExtractor. getMethods(MethodFilter filter)Returns accessible methods that pass the given filter.Collection<Method>MethodExtractor. getMethods(MethodFilter filter)Returns all methods fromMethodExtractor.getProxyableMethods(), filered by the givenMethodFilter.Collection<Method>MultitypeMethodExtractor. getMethods(MethodFilter filter)
-