com.github.VipulKumarSinghTech.DateUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of DateUtils Show documentation
Show all versions of DateUtils Show documentation
A library used for performing operations on Date objects in java.
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