org.simpleflatmapper.reflect.getter.StringUUIDGetter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sfm-reflect Show documentation
Show all versions of sfm-reflect Show documentation
Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.
package org.simpleflatmapper.reflect.getter;
import org.simpleflatmapper.reflect.Getter;
import java.util.UUID;
public final class StringUUIDGetter implements Getter {
private final Getter stringGetter;
public StringUUIDGetter(final Getter stringGetter) {
this.stringGetter = stringGetter;
}
@Override
public UUID get(final R target) throws Exception {
final String o = stringGetter.get(target);
if (o == null) return null;
return UUID.fromString(o);
}
@Override
public String toString() {
return "StringUUIDGetter{" +
"stringGetter=" + stringGetter +
'}';
}
}