| java.lang.Object | |
| ↳ | org.mybatis.generator.codegen.mybatis3.MyBatis3FormattingUtilities |
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
The aliased column name for a select statement generated by the example
clauses.
| |||||||||||
Calculates the string to use in select phrases in SqlMaps.
| |||||||||||
The renamed column name for a select statement.
| |||||||||||
The phrase to use in a select list.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
The aliased column name for a select statement generated by the example clauses. This is not appropriate for selects in SqlMaps because the column is not escaped for MyBatis. If there is a table alias, the value will be alias.columnName. This method is used in the Example classes and the returned value will be in a Java string. So we need to escape double quotes if they are the delimiters.
Calculates the string to use in select phrases in SqlMaps.
The renamed column name for a select statement. If there is a table alias, the value will be alias_columnName. This is appropriate for use in a result map.
The phrase to use in a select list. If there is a table alias, the value will be "alias.columnName as alias_columnName"