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

com.github.chrisgleissner.springbatchrest.util.DateUtil Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
package com.github.chrisgleissner.springbatchrest.util;

import java.time.LocalDateTime;
import java.time.ZoneId;
import java.util.Date;

public class DateUtil {

    public static LocalDateTime localDateTime(Date date) {
        return date == null ? null : date.toInstant()
                .atZone(ZoneId.systemDefault())
                .toLocalDateTime();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy