| Modifier and Type | Method and Description |
|---|---|
TimestampTimeLiteral |
dt(Timestamp date)
Creates a literal, which has some date as content.
|
SQLFunctionLiteral |
func(String name,
ValueExpression... parameters)
Creates a literal, which represents a use of SQL function.
|
DirectLiteral |
l(String literalContents)
Creates a literal, which has some textual content.
|
NumericLiteral |
n(Number number)
Creates a literal, which has some number as contents.
|
DirectLiteral |
param()
Returns literal, representing a parameter (
?) in parameterized SQL statement. |
StringLiteral |
s(String stringContents)
Creates new string literal, that is, a string to be enclosed in
' -characters. |
StringLiteral s(String stringContents)
' -characters.stringContents - The contents of string literal.StringLiteralDirectLiteral param()
?) in parameterized SQL statement.?) in parameterized SQL statement.DirectLiteral l(String literalContents)
literalContents - The contents to be used.DirectLiteral.TimestampTimeLiteral dt(Timestamp date)
date - The date to use.TimestampTimeLiteral.NumericLiteral n(Number number)
number - The number to use.NumericLiteral.SQLFunctionLiteral func(String name, ValueExpression... parameters)
name - The name of function.parameters - The parameters for function.SQLFunctionLiteral.Copyright © 2010-2012. All Rights Reserved.