Package nablarch.core.validation.ee
Annotation Type DecimalRange
@Target({METHOD,FIELD,ANNOTATION_TYPE,CONSTRUCTOR,PARAMETER})
@Retention(RUNTIME)
@Documented
@Constraint(validatedBy=DecimalRangeValidator.class)
@Published
public @interface DecimalRange
入力値が指定された値の範囲内であるかチェックする。
入力値が整数の場合は、
NumberRange
を用いること。
salesが-1.5~1.5の範囲内であるかチェックするpublic class Sample
{@DecimalRange(min = -1.5, max = 1.5) String sales;
}
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
指定された実数の範囲の数値であることを検証するバリデータ。static @interface
複数指定用のアノテーション -
Optional Element Summary