Annotation Type Digits
数値フォーマット指定を表わすアノテーション。
BigDecimalConvertor
, LongConvertor
, IntegerConvertor
を使用する場合は、
本アノテーションの設定が必須である。
整数部1桁、小数部なしの場合は次のようにsetterに設定する。
バリデーションの詳細は、各コンバータの仕様を参照。@PropertyName("認証失敗回数")
@Required
@NumberRange(min = 0, max = 9)
@Digits(integer = 1, fraction = 0) public void setFailedCount(Integer failedCount) { this.failedCount = failedCount; }
-
Required Element Summary
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionboolean
カンマ編集可否。int
小数部桁数変換失敗時のメッセージID。
-
Element Details
-
integer
int integer整数部桁数。
-
-
-
fraction
int fraction小数部桁数- Default:
- 0
-
commaSeparated
boolean commaSeparatedカンマ編集可否。デフォルトは
true
(カンマ編集可)- Default:
- true
-
messageId
String messageId変換失敗時のメッセージID。- Default:
- ""
-