类 StandardJDBCEscapeFunction
- java.lang.Object
-
- org.hibernate.dialect.function.StandardSQLFunction
-
- org.hibernate.dialect.function.StandardJDBCEscapeFunction
-
- 所有已实现的接口:
SQLFunction
public class StandardJDBCEscapeFunction extends StandardSQLFunction
Analogous toStandardSQLFunctionexcept that standard JDBC escape sequences (i.e. {fn blah}) are used when rendering the SQL.- 作者:
- Steve Ebersole
-
-
构造器概要
构造器 构造器 说明 StandardJDBCEscapeFunction(String name, Type typeValue)Constructs a StandardJDBCEscapeFunction
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 Stringrender(Type argumentType, List args, SessionFactoryImplementor factory)Render the function call as SQL fragment.StringtoString()-
从类继承的方法 org.hibernate.dialect.function.StandardSQLFunction
getName, getRenderedName, getReturnType, getType, hasArguments, hasParenthesesIfNoArguments
-
-
-
-
方法详细资料
-
render
public String render(Type argumentType, List args, SessionFactoryImplementor factory)
从接口复制的说明:SQLFunctionRender the function call as SQL fragment. Note, the 'firstArgumentType' parameter should match the one passed intoSQLFunction.getReturnType(org.hibernate.type.Type, org.hibernate.engine.spi.Mapping)- 指定者:
render在接口中SQLFunction- 覆盖:
render在类中StandardSQLFunction- 参数:
argumentType- The type of the first argumentargs- The function argumentsfactory- The SessionFactory- 返回:
- The rendered function call
-
toString
public String toString()
- 覆盖:
toString在类中StandardSQLFunction
-
-