/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * Copyright (c) 2009 by Red Hat Inc and/or its affiliates or by
 * third-party contributors as indicated by either @author tags or express
 * copyright attribution statements applied by the authors.  All
 * third-party contributions are distributed under license by Red Hat Inc.
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 */
package org.hibernate.jpa.criteria.expression.function;

import java.io.Serializable;

import org.hibernate.jpa.criteria.CriteriaBuilderImpl;
import org.hibernate.jpa.criteria.ParameterRegistry;
import org.hibernate.jpa.criteria.compile.RenderingContext;
import org.hibernate.jpa.criteria.expression.ExpressionImpl;

Models the basic concept of a SQL function.
Author:Steve Ebersole
/** * Models the basic concept of a SQL function. * * @author Steve Ebersole */
public class BasicFunctionExpression<X> extends ExpressionImpl<X> implements FunctionExpression<X>, Serializable { private final String functionName; public BasicFunctionExpression( CriteriaBuilderImpl criteriaBuilder, Class<X> javaType, String functionName) { super( criteriaBuilder, javaType ); this.functionName = functionName; } protected static int properSize(int number) { return number + (int)( number*.75 ) + 1; } public String getFunctionName() { return functionName; } public boolean isAggregation() { return false; } public void registerParameters(ParameterRegistry registry) { // nothing to do here... } public String render(RenderingContext renderingContext) { return getFunctionName() + "()"; } public String renderProjection(RenderingContext renderingContext) { return render( renderingContext ); } }