Annotation Type HybrisDecimalMin
-
@Target({METHOD,FIELD,ANNOTATION_TYPE,CONSTRUCTOR,PARAMETER}) @Retention(RUNTIME) @Documented @Constraint(validatedBy=HybrisDecimalMinValidator.class) public @interface HybrisDecimalMinThe annotated element must be a number whose value must be greater or equal to the specified minimum. 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 min value according to theBigDecimalstring representation
-