All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codehaus.jackson.map.introspect.MethodFilter Maven / Gradle / Ivy

Go to download

Data Mapper package is a high-performance data binding package built on Jackson JSON processor

There is a newer version: 1.9.13
Show newest version
package org.codehaus.jackson.map.introspect;

import java.lang.reflect.Method;

/**
 * Simple interface that defines API used to filter out irrelevant
 * methods
 */
public interface MethodFilter
{
    public boolean includeMethod(Method m);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy