javax.validation.constraints
Annotation Type Min
@Target(value={METHOD,FIELD,ANNOTATION_TYPE,CONSTRUCTOR,PARAMETER})
@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:
BigDecimal
BigInteger
byte
, short
, int
, long
, and their respective wrappers
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
|
value
public abstract long value
- Returns:
- value the element must be higher or equal to
message
public abstract String message
- Default:
- "{javax.validation.constraints.Min.message}"
groups
public abstract Class<?>[] groups
- Default:
- {}
payload
public abstract Class<? extends Payload>[] payload
- Default:
- {}
Copyright © 2007-2013. All Rights Reserved.