org.sql2o.reflection.ReflectionFieldGetterFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anima Show documentation
Show all versions of anima Show documentation
Operate the database like a stream
package org.sql2o.reflection;
import java.lang.reflect.Field;
/**
* @author mdelapenya
*/
public class ReflectionFieldGetterFactory implements FieldGetterFactory {
public Getter newGetter(Field field) {
return new FieldGetter(field);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy