|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
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 | |
---|---|
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? |
String |
render(Type firstArgumentType,
List arguments,
SessionFactoryImplementor factory)
Render the function call as SQL fragment. |
Method Detail |
---|
boolean hasArguments()
boolean hasParenthesesIfNoArguments()
Type getReturnType(Type firstArgumentType, Mapping mapping) throws QueryException
render(org.hibernate.type.Type, java.util.List, org.hibernate.engine.SessionFactoryImplementor)
firstArgumentType
- The type of the first argumentmapping
- The mapping source.
QueryException
- Indicates an issue resolving the return type.String render(Type firstArgumentType, List arguments, SessionFactoryImplementor factory) throws QueryException
getReturnType(org.hibernate.type.Type, org.hibernate.engine.Mapping)
firstArgumentType
- The type of the first argumentarguments
- The function argumentsfactory
- The SessionFactory
QueryException
- Indicates a problem rendering the
function call.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |