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

io.craftsman.creator.InstantCreator 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.Instant;

public class InstantCreator implements Creator {

    @Override
    public Instant create(Object source) {
        Instant srcObject = (Instant) source;
        return Instant.from(srcObject);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy