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

io.craftsman.creator.LocalDateCreator 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.LocalDate;

public class LocalDateCreator implements Creator {

    @Override
    public LocalDate create(Object source) {
        LocalDate srcObject = (LocalDate) source;
        return LocalDate.of(srcObject.getYear(), srcObject.getMonth(), srcObject.getDayOfMonth());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy