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

com.github.VipulKumarSinghTech.DateUtils Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package com.github.VipulKumarSinghTech;

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

public class DateUtils {

    public static Date convert(LocalDate localDate) {
        return Date.from(localDate.atStartOfDay(ZoneId.systemDefault()).toInstant());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy