
de.galan.commons.time.NowDateSupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
Additional common functionality for Java developers.
package de.galan.commons.time;
import java.util.Date;
import java.util.function.Supplier;
/**
* Provides the current Date
*
* @author galan
*/
public class NowDateSupplier implements Supplier {
@Override
public Date get() {
return new Date(ApplicationClock.getClock().millis());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy