Package io.ebean.annotation
Annotation Type Min
-
@Retention(RUNTIME) @Target(FIELD) public @interface Min
Specify a property to be an MIN aggregation.@Minis short hand for@Aggregation("min(...propertyName...)")Example:
{@code
@Retention(RUNTIME) @Target(FIELD) public @interface Min
@Min is short hand for @Aggregation("min(...propertyName...)")
{@code