Class Lower<T>
- java.lang.Object
-
- org.mybatis.dynamic.sql.select.function.AbstractTypeConvertingFunction<T,T,U>
-
- org.mybatis.dynamic.sql.select.function.AbstractUniTypeFunction<T,Lower<T>>
-
- org.mybatis.dynamic.sql.select.function.Lower<T>
-
- All Implemented Interfaces:
BasicColumn
,BindableColumn<T>
public class Lower<T> extends AbstractUniTypeFunction<T,Lower<T>>
-
-
Field Summary
-
Fields inherited from class org.mybatis.dynamic.sql.select.function.AbstractTypeConvertingFunction
alias, column
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Lower<T>
copy()
static <T> Lower<T>
of(BindableColumn<T> column)
String
renderWithTableAlias(TableAliasCalculator tableAliasCalculator)
Returns the name of the item aliased with a table name if appropriate.-
Methods inherited from class org.mybatis.dynamic.sql.select.function.AbstractUniTypeFunction
jdbcType, typeHandler
-
Methods inherited from class org.mybatis.dynamic.sql.select.function.AbstractTypeConvertingFunction
alias, as
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.mybatis.dynamic.sql.BasicColumn
renderWithTableAndColumnAlias
-
Methods inherited from interface org.mybatis.dynamic.sql.BindableColumn
convertParameterType, javaType, renderingStrategy
-
-
-
-
Method Detail
-
renderWithTableAlias
public String renderWithTableAlias(TableAliasCalculator tableAliasCalculator)
Description copied from interface:BasicColumn
Returns the name of the item aliased with a table name if appropriate. For example, "a.foo". This is appropriate for where clauses and order by clauses.- Parameters:
tableAliasCalculator
- the table alias calculator for the current renderer- Returns:
- the item name with the table alias applied
-
of
public static <T> Lower<T> of(BindableColumn<T> column)
-
-