Uses of Interface
org.codehaus.jackson.map.introspect.MethodFilter
Packages that use MethodFilter
Package
Description
Functionality needed for Bean introspection, required for detecting
accessors and mutators for Beans, as well as locating and handling
method annotations.
-
Uses of MethodFilter in org.codehaus.jackson.map.introspect
Classes in org.codehaus.jackson.map.introspect that implement MethodFilterModifier and TypeClassDescriptionstatic class
Deprecated.Since 1.9 just don't usestatic final class
Deprecated.Since 1.9 just don't usestatic class
Deprecated.Since 1.9 just don't useFields in org.codehaus.jackson.map.introspect declared as MethodFilterModifier and TypeFieldDescriptionprotected static final MethodFilter
BasicClassIntrospector.MINIMAL_FILTER
Methods in org.codehaus.jackson.map.introspect that return MethodFilterModifier and TypeMethodDescriptionprotected MethodFilter
BasicClassIntrospector.getDeserializationMethodFilter
(DeserializationConfig cfg) Deprecated.Since 1.9 just don't useprotected MethodFilter
BasicClassIntrospector.getSerializationMethodFilter
(SerializationConfig cfg) Deprecated.Since 1.9 just don't useMethods in org.codehaus.jackson.map.introspect with parameters of type MethodFilterModifier and TypeMethodDescriptionprotected void
AnnotatedClass._addMemberMethods
(Class<?> cls, MethodFilter methodFilter, AnnotatedMethodMap methods, Class<?> mixInCls, AnnotatedMethodMap mixIns) protected void
AnnotatedClass._addMethodMixIns
(Class<?> targetClass, MethodFilter methodFilter, AnnotatedMethodMap methods, Class<?> mixInCls, AnnotatedMethodMap mixIns) protected boolean
AnnotatedClass._isIncludableMethod
(Method m, MethodFilter filter) void
AnnotatedClass.resolveMemberMethods
(MethodFilter methodFilter) Method for resolving member method information: aggregating all non-static methods and combining annotations (to implement method-annotation inheritance)void
AnnotatedClass.resolveMemberMethods
(MethodFilter methodFilter, boolean collectIgnored) Deprecated.