public class EmptySql extends java.lang.Object implements Sql<InParameter<?>>
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getFormattedSql()
Returns the formatted SQL string.
|
SqlKind |
getKind()
Returns the kind of the SQL.
|
java.util.List<InParameter<?>> |
getParameters()
Returns the parameter list.
|
java.lang.String |
getRawSql()
Returns the raw SQL string.
|
java.lang.String |
getSqlFilePath()
Returns the file path that contains this SQL.
|
SqlLogType |
getSqlLogType()
Returns the type of the SQL log.
|
public EmptySql(SqlKind sqlKind)
public SqlKind getKind()
SqlgetKind in interface Sql<InParameter<?>>public java.lang.String getRawSql()
SqlThe bind variables are displayed as ?.
getRawSql in interface Sql<InParameter<?>>public java.lang.String getFormattedSql()
SqlThe bind variables are replaced with the string representations of the parameters.
getFormattedSql in interface Sql<InParameter<?>>public java.lang.String getSqlFilePath()
SqlgetSqlFilePath in interface Sql<InParameter<?>>null if this SQL is auto-generatedpublic java.util.List<InParameter<?>> getParameters()
SqlgetParameters in interface Sql<InParameter<?>>public SqlLogType getSqlLogType()
SqlgetSqlLogType in interface Sql<InParameter<?>>