Annotation Type Max


@Retention(RUNTIME) @Target(FIELD) public @interface Max
Specify a property to be an MAX aggregation.

@Max is short hand for @Aggregation("max(...propertyName...)")

Example:



 @Max
 BigDecimal distance;

 // is the same as:

 @Aggregation("max(distance)")
 BigDecimal distance;