Uses of Interface
org.codehaus.jackson.map.introspect.MethodFilter
-
Packages that use MethodFilter Package Description org.codehaus.jackson.map.introspect 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 MethodFilter Modifier and Type Class Description static class
BasicClassIntrospector.GetterMethodFilter
Deprecated.Since 1.9 just don't usestatic class
BasicClassIntrospector.SetterAndGetterMethodFilter
Deprecated.Since 1.9 just don't usestatic class
BasicClassIntrospector.SetterMethodFilter
Deprecated.Since 1.9 just don't useFields in org.codehaus.jackson.map.introspect declared as MethodFilter Modifier and Type Field Description protected static MethodFilter
BasicClassIntrospector. MINIMAL_FILTER
Methods in org.codehaus.jackson.map.introspect that return MethodFilter Modifier and Type Method Description protected 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 MethodFilter Modifier and Type Method Description protected 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.
-