Class AbstractUniTypeFunction<T,U extends AbstractUniTypeFunction<T,U>>

java.lang.Object
org.mybatis.dynamic.sql.select.function.AbstractTypeConvertingFunction<T,T,U>
org.mybatis.dynamic.sql.select.function.AbstractUniTypeFunction<T,U>
Type Parameters:
T - The type of the underlying column
U - the specific subtype that implements the function
All Implemented Interfaces:
BasicColumn, BindableColumn<T>
Direct Known Subclasses:
Avg, Concat, Lower, Max, Min, OperatorFunction, Substring, Sum, Upper

public abstract class AbstractUniTypeFunction<T,U extends AbstractUniTypeFunction<T,U>> extends AbstractTypeConvertingFunction<T,T,U>
Represents a function that does not change the underlying data type.
Author:
Jeff Butler