
xuml.tools.model.compiler.runtime.query.DateConstant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xuml-model-compiler-runtime Show documentation
Show all versions of xuml-model-compiler-runtime Show documentation
Runtime classes for use with classes generated by xuml-model-compiler
package xuml.tools.model.compiler.runtime.query;
import java.util.Date;
import scala.concurrent.duration.Duration;
import xuml.tools.model.compiler.runtime.Entity;
public class DateConstant> extends DateExpression {
private final Date value;
public DateConstant(Date value) {
this.value = value;
}
public DateConstant(Duration duration) {
this(new Date(duration.toMillis()));
}
public Date getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy