Annotation Type HybrisDecimalMax
-
@Target({METHOD,FIELD,ANNOTATION_TYPE,CONSTRUCTOR,PARAMETER}) @Retention(RUNTIME) @Documented @Constraint(validatedBy=HybrisDecimalMaxValidator.class) public @interface HybrisDecimalMaxThe annotated element must be a number whose value must be lower or equal to the specified maximum. Supported types are:BigDecimalDoubleFloatBigIntegerStringbyte,short,int,long, and their respective wrappers
nullelements are considered valid.
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.StringvalueTheStringrepresentation of the max value according to theBigDecimalstring representation
-