Package org.hibernate.dialect.function
Interface SQLFunction
-
- All Known Implementing Classes:
AbstractAnsiTrimEmulationFunction
,AnsiTrimEmulationFunction
,AnsiTrimFunction
,AvgWithArgumentCastFunction
,CastFunction
,CharIndexFunction
,ConditionalParenthesisFunction
,ConvertFunction
,DB2SubstringFunction
,DerbyConcatFunction
,HANASpatialAggregate
,HANASpatialFunction
,NoArgSQLFunction
,NvlFunction
,PositionSubstringFunction
,SQLFunctionTemplate
,StandardAnsiSqlAggregationFunctions.AvgFunction
,StandardAnsiSqlAggregationFunctions.CountFunction
,StandardAnsiSqlAggregationFunctions.MaxFunction
,StandardAnsiSqlAggregationFunctions.MinFunction
,StandardAnsiSqlAggregationFunctions.SumFunction
,StandardJDBCEscapeFunction
,StandardSQLFunction
,StaticPrecisionFspTimestampFunction
,TrimFunctionTemplate
,VarArgsSQLFunction
public interface SQLFunction
Provides support routines for the HQL functions as used in the various SQL Dialects Provides an interface for supporting various HQL functions that are translated to SQL. The Dialect and its sub-classes use this interface to provide details required for processing of the function.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Type
getReturnType(Type firstArgumentType, Mapping mapping)
The return type of the function.boolean
hasArguments()
Does this function have any arguments?boolean
hasParenthesesIfNoArguments()
If there are no arguments, are parentheses required?java.lang.String
render(Type firstArgumentType, java.util.List arguments, SessionFactoryImplementor factory)
Render the function call as SQL fragment.
-
-
-
Method Detail
-
hasArguments
boolean hasArguments()
Does this function have any arguments?- Returns:
- True if the function expects to have parameters; false otherwise.
-
hasParenthesesIfNoArguments
boolean hasParenthesesIfNoArguments()
If there are no arguments, are parentheses required?- Returns:
- True if a no-arg call of this function requires parentheses.
-
getReturnType
Type getReturnType(Type firstArgumentType, Mapping mapping) throws QueryException
The return type of the function. May be either a concrete type which is preset, or variable depending upon the type of the first function argument. Note, the 'firstArgumentType' parameter should match the one passed intorender(org.hibernate.type.Type, java.util.List, org.hibernate.engine.spi.SessionFactoryImplementor)
- Parameters:
firstArgumentType
- The type of the first argumentmapping
- The mapping source.- Returns:
- The type to be expected as a return.
- Throws:
QueryException
- Indicates an issue resolving the return type.
-
render
java.lang.String render(Type firstArgumentType, java.util.List arguments, SessionFactoryImplementor factory) throws QueryException
Render the function call as SQL fragment. Note, the 'firstArgumentType' parameter should match the one passed intogetReturnType(org.hibernate.type.Type, org.hibernate.engine.spi.Mapping)
- Parameters:
firstArgumentType
- The type of the first argumentarguments
- The function argumentsfactory
- The SessionFactory- Returns:
- The rendered function call
- Throws:
QueryException
- Indicates a problem rendering the function call.
-
-