javax.validation.constraints
Annotation Type DecimalMax


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

The annotated element must be a number whose value must be lower or equal to the specified maximum.

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
 java.lang.String value
          The String representation of the max value according to the BigDecimal string representation
 
Optional Element Summary
 java.lang.Class<?>[] groups
           
 java.lang.String message
           
 

Element Detail

value

public abstract java.lang.String value
The String representation of the max value according to the BigDecimal string representation

Returns:
value the element must be lower or equal to

message

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

groups

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


Copyright © 2007-2009. All Rights Reserved.