io.craftsman.creator.DurationCreator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dozer-jdk8-support Show documentation
Show all versions of dozer-jdk8-support Show documentation
A library that provides the missing Java 8 type mappers for the Dozer Java Bean Mapper.
package io.craftsman.creator;
import java.time.Duration;
public class DurationCreator implements Creator {
@Override
public Duration create(Object source) {
return Duration.parse(source.toString());
}
}