Uses of Interface
org.codehaus.jackson.map.introspect.MethodFilter

Packages that use MethodFilter
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
static class BasicClassIntrospector.GetterMethodFilter
          Filter used to only include methods that have signature that is compatible with "getters": take no arguments, are non-static, and return something.
static class BasicClassIntrospector.SetterAndGetterMethodFilter
          Filter used if some getters (namely, once needed for "setterless collection injection") are also needed, not just setters.
static class BasicClassIntrospector.SetterMethodFilter
          Filter used to only include methods that have signature that is compatible with "setters": take one and only argument and are non-static.
 

Methods in org.codehaus.jackson.map.introspect that return MethodFilter
protected  MethodFilter BasicClassIntrospector.getDeserializationMethodFilter(DeserializationConfig cfg)
          Helper method for getting access to filter that only guarantees that methods used for deserialization are to be included.
protected  MethodFilter BasicClassIntrospector.getSerializationMethodFilter(SerializationConfig cfg)
          Helper method for getting access to filter that only guarantees that methods used for serialization are to be included.
 

Methods in org.codehaus.jackson.map.introspect with parameters of type MethodFilter
protected  void AnnotatedClass._addMemberMethods(Class<?> cls, MethodFilter methodFilter, AnnotatedMethodMap methods, Class<?> mixInCls, AnnotatedMethodMap mixIns)
           
protected  void AnnotatedClass._addMethodMixIns(MethodFilter methodFilter, AnnotatedMethodMap methods, Class<?> mixInCls, AnnotatedMethodMap mixIns)
           
protected  boolean AnnotatedClass._isIncludableMethod(Method m, MethodFilter filter)
           
 void AnnotatedClass.resolveMemberMethods(MethodFilter methodFilter, boolean collectIgnored)