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

org.sql2o.reflection.Getter Maven / Gradle / Ivy

There is a newer version: 0.2.6
Show newest version
package org.sql2o.reflection;

/**
 * The Getter interface is used by sql2o to get property values when doing automatic column to property mapping
 *
 * @author mdelapenya
 */
public interface Getter {

	Object getProperty(Object obj);

    Class getType();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy