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

de.galan.commons.time.NowDateSupplier Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
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