NoArgSQLFunctionpublic class NoArgSQLFunction extends Object implements SQLFunctionA function which takes no arguments |
Fields Summary |
---|
private org.hibernate.type.Type | returnType | private boolean | hasParenthesesIfNoArguments | private String | name |
Constructors Summary |
---|
public NoArgSQLFunction(String name, org.hibernate.type.Type returnType)
this(name, returnType, true);
| public NoArgSQLFunction(String name, org.hibernate.type.Type returnType, boolean hasParenthesesIfNoArguments)
this.returnType = returnType;
this.hasParenthesesIfNoArguments = hasParenthesesIfNoArguments;
this.name = name;
|
|