Annotation Type Min


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

@Min is short hand for @Aggregation("min(...propertyName...)")

Example:



 @Min
 BigDecimal distance;

 // is the same as:

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