org.codehaus.jackson.map.introspect
Class BasicClassIntrospector.GetterMethodFilter

java.lang.Object
  extended by org.codehaus.jackson.map.introspect.BasicClassIntrospector.GetterMethodFilter
All Implemented Interfaces:
MethodFilter
Enclosing class:
BasicClassIntrospector

public static class BasicClassIntrospector.GetterMethodFilter
extends Object
implements MethodFilter

Filter used to only include methods that have signature that is compatible with "getters": take no arguments, are non-static, and return something.


Field Summary
static BasicClassIntrospector.GetterMethodFilter instance
           
 
Method Summary
 boolean includeMethod(Method m)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

instance

public static final BasicClassIntrospector.GetterMethodFilter instance
Method Detail

includeMethod

public boolean includeMethod(Method m)
Specified by:
includeMethod in interface MethodFilter