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

cdm.base.datetime.functions.TodayImpl Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.89
Show newest version
package cdm.base.datetime.functions;

import com.rosetta.model.lib.records.Date;

import java.time.LocalDate;

public class TodayImpl extends Today {

	@Override
	protected Date doEvaluate() {
		return Date.of(LocalDate.now());
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy