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

org.hibernate.query.sqm.tree.expression.function.SqmCurrentDateFunction Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha3
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later
 * See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
 */
package org.hibernate.query.sqm.tree.expression.function;

import org.hibernate.metamodel.model.domain.spi.AllowableFunctionReturnType;
import org.hibernate.query.sqm.consume.spi.SemanticQueryWalker;
import org.hibernate.type.spi.StandardSpiBasicTypes;

/**
 * @author Steve Ebersole
 */
public class SqmCurrentDateFunction extends AbstractSqmFunction {
	public static final String NAME = "current_date";

	public SqmCurrentDateFunction() {
		super( StandardSpiBasicTypes.DATE );
	}

	public SqmCurrentDateFunction(AllowableFunctionReturnType resultType) {
		super( resultType );
	}

	@Override
	public String getFunctionName() {
		return NAME;
	}

	@Override
	public boolean hasArguments() {
		return false;
	}

	@Override
	public  T accept(SemanticQueryWalker walker) {
		return walker.visitCurrentDateFunction( this );
	}

	@Override
	public String asLoggableText() {
		return NAME;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy