VarArgsSQLFunctionpublic class VarArgsSQLFunction extends Object implements SQLFunctionSupport for slightly more general templating than StandardSQLFunction,
with an unlimited number of arguments. |
Fields Summary |
---|
private final String | begin | private final String | sep | private final String | end | private final org.hibernate.type.Type | type |
Constructors Summary |
---|
public VarArgsSQLFunction(org.hibernate.type.Type type, String begin, String sep, String end)
this.begin = begin;
this.sep = sep;
this.end = end;
this.type = type;
| public VarArgsSQLFunction(String begin, String sep, String end)
this.begin = begin;
this.sep = sep;
this.end = end;
this.type = null;
|
|