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

io.craftsman.creator.PeriodCreator Maven / Gradle / Ivy

Go to download

A library that provides the missing Java 8 type mappers for the Dozer Java Bean Mapper.

There is a newer version: 1.0.6
Show newest version
package io.craftsman.creator;

import java.time.Period;

public class PeriodCreator implements Creator {

    @Override
    public Period create(Object source) {
        Period srcObject = (Period) source;
        return Period.of(srcObject.getYears(), srcObject.getMonths(), srcObject.getDays());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy