public class ConcatSQLExpression extends java.lang.Object implements SQLExpression<java.lang.String>
SQLExpression by concatenation in SQL.| Constructor and Description |
|---|
ConcatSQLExpression() |
ConcatSQLExpression(SQLExpression<java.lang.String>... sqlValues) |
| Modifier and Type | Method and Description |
|---|---|
void |
add(SQLExpression<java.lang.String> v) |
int |
add(java.lang.StringBuilder sb,
boolean qualify)
Add the expression to a StringBuilder
|
java.util.List<PatternArgument> |
getParameters(java.util.List<PatternArgument> list)
Add parameters for this value to a list.
|
SQLFilter |
getRequiredFilter()
Get an SQLFilter required to be added to the filter set.
|
java.lang.Class<java.lang.String> |
getTarget()
Get the type of the returned object as far as it is known.
|
java.lang.String |
makeObject(java.sql.ResultSet rs,
int pos)
Extract a result of the expression from a ResultSet into an object of the specified type.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitequals, groupingIsomorphic, hashCodeaddGroup, checkContentsCanGroup, getGroupParameterspublic ConcatSQLExpression()
public ConcatSQLExpression(SQLExpression<java.lang.String>... sqlValues)
public void add(SQLExpression<java.lang.String> v)
public java.lang.Class<java.lang.String> getTarget()
Targettedpublic int add(java.lang.StringBuilder sb,
boolean qualify)
SQLValuepublic java.util.List<PatternArgument> getParameters(java.util.List<PatternArgument> list)
SQLValuegetParameters in interface SQLValue<java.lang.String>list - to modifypublic java.lang.String makeObject(java.sql.ResultSet rs,
int pos)
throws DataException,
java.sql.SQLException
SQLValuemakeObject in interface SQLValue<java.lang.String>rs - ResultSetDataExceptionjava.sql.SQLExceptionpublic SQLFilter getRequiredFilter()
SQLValuegetRequiredFilter in interface SQLValue<java.lang.String>