javax.validation.constraints
Annotation Type Min


@Target(value={METHOD,FIELD,ANNOTATION_TYPE})
@Retention(value=RUNTIME)
@Documented
@Constraint(validatedBy={})
public @interface Min

The annotated element must be a number whose value must be higher or equal to the specified minimum.

Supported types are:

Note that double and float are not supported due to rounding errors (some providers might provide some approximative support)

null elements are considered valid

Author:
Emmanuel Bernard

Required Element Summary
 long value
           
 
Optional Element Summary
 java.lang.Class<?>[] groups
           
 java.lang.String message
           
 

Element Detail

value

public abstract long value
Returns:
value the element must be higher or equal to

message

public abstract java.lang.String message
Default:
"{constraint.min}"

groups

public abstract java.lang.Class<?>[] groups
Default:
{}


Copyright © 2007-2009. All Rights Reserved.