org.sfm.reflect.impl.FieldGetter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simpleFlatMapper Show documentation
Show all versions of simpleFlatMapper Show documentation
Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.
package org.sfm.reflect.impl;
import org.sfm.reflect.Getter;
import java.lang.reflect.Field;
public final class FieldGetter implements Getter {
private final Field field;
public FieldGetter(final Field field) {
this.field = field;
}
@SuppressWarnings("unchecked")
public P get(final T target) throws IllegalAccessException {
return (P) field.get(target);
}
@Override
public String toString() {
return "FieldSetter{" +
"field=" + field +
'}';
}
}