接口 FunctionExpression<T>
-
- 类型参数:
T- The type of the function result.
- 所有超级接口:
javax.persistence.criteria.Expression<T>,javax.persistence.criteria.Selection<T>,javax.persistence.TupleElement<T>
- 所有已知实现类:
AbsFunction,AggregationFunction,AggregationFunction.AVG,AggregationFunction.COUNT,AggregationFunction.GREATEST,AggregationFunction.LEAST,AggregationFunction.MAX,AggregationFunction.MIN,AggregationFunction.SUM,BasicFunctionExpression,CastFunction,CurrentDateFunction,CurrentTimeFunction,CurrentTimestampFunction,LengthFunction,LocateFunction,LowerFunction,ParameterizedFunctionExpression,SqrtFunction,SubstringFunction,TrimFunction,UpperFunction
public interface FunctionExpression<T> extends javax.persistence.criteria.Expression<T>Contract for expressions which model a SQL function call.- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 StringgetFunctionName()Retrieve the name of the function.booleanisAggregation()Is this function a value aggregator (like a COUNT or MAX function e.g.)?
-
-
-
方法详细资料
-
getFunctionName
String getFunctionName()
Retrieve the name of the function.- 返回:
- The function name.
-
isAggregation
boolean isAggregation()
Is this function a value aggregator (like a COUNT or MAX function e.g.)?- 返回:
- True if this functions does aggregation.
-
-