mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-30 21:08:30 +08:00
added deprecations
This commit is contained in:
parent
1e8752bf37
commit
eba20af923
@ -14,6 +14,7 @@ import com.mysema.query.types.expr.Expr;
|
||||
* @author tiwe
|
||||
* @version $Id$
|
||||
*/
|
||||
@Deprecated
|
||||
public final class AggregationFunctions {
|
||||
|
||||
private AggregationFunctions(){}
|
||||
|
||||
@ -63,16 +63,25 @@ public final class MathFunctions {
|
||||
return ENumber.min(left, right);
|
||||
}
|
||||
|
||||
/**
|
||||
* use left.ceil() instead
|
||||
*/
|
||||
@Deprecated
|
||||
public static ENumber<Double> ceil(EDecimal<Double> left) {
|
||||
return left.ceil();
|
||||
}
|
||||
|
||||
/**
|
||||
* use left.round() instead
|
||||
*/
|
||||
@Deprecated
|
||||
public static ENumber<Double> round(EDecimal<Double> left) {
|
||||
return left.round();
|
||||
}
|
||||
|
||||
/**
|
||||
* use left.floor() instead
|
||||
*/
|
||||
@Deprecated
|
||||
public static ENumber<Double> floor(EDecimal<Double> left) {
|
||||
return left.floor();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user