|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Target(value={METHOD,FIELD,ANNOTATION_TYPE,CONSTRUCTOR,PARAMETER}) @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:BigDecimal
BigInteger
CharSequence
byte
, short
, int
, long
, and their respective wrappersdouble
and float
are not supported due to rounding errors
(some providers might provide some approximative support)
null
elements are considered valid.
Required Element Summary | |
---|---|
String |
value
The String representation of the max value according to the
BigDecimal string representation |
Optional Element Summary | |
---|---|
Class<?>[] |
groups
|
boolean |
inclusive
Specifies, whether the specified maximum is inclusive or exclusive. |
String |
message
|
Class<? extends Payload>[] |
payload
|
Element Detail |
---|
public abstract String value
String
representation of the max value according to the
BigDecimal
string representation
public abstract String message
public abstract Class<?>[] groups
public abstract Class<? extends Payload>[] payload
public abstract boolean inclusive
true
if the value must be lower or equal to the specified maximum, false
if the value must be lower.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |