Package javax.validation.constraints
Contains all the Bean Validation provided constraints
also called built-in constraints.
These constraints do not cover all functional use cases but do represent
all the fundamental blocks to express low level constraints on basic JDK
types.
-
Enum Summary Enum Description Pattern.Flag Possible Regexp flags. -
Annotation Types Summary Annotation Type Description AssertFalse The annotated element must be false.AssertFalse.List Defines severalAssertFalseannotations on the same element.AssertTrue The annotated element must be true.AssertTrue.List Defines severalAssertTrueannotations on the same element.DecimalMax The annotated element must be a number whose value must be lower or equal to the specified maximum.DecimalMax.List Defines severalDecimalMaxannotations on the same element.DecimalMin The annotated element must be a number whose value must be higher or equal to the specified minimum.DecimalMin.List Defines severalDecimalMinannotations on the same element.Digits The annotated element must be a number within accepted range Supported types are:BigDecimalBigIntegerCharSequencebyte,short,int,long, and their respective wrapper typesDigits.List Defines severalDigitsannotations on the same element.Future The annotated element must be a date in the future.Future.List Defines severalFutureannotations on the same element.Max The annotated element must be a number whose value must be lower or equal to the specified maximum.Max.List Defines severalMaxannotations on the same element.Min The annotated element must be a number whose value must be higher or equal to the specified minimum.Min.List Defines severalMinannotations on the same element.NotNull The annotated element must not benull.NotNull.List Defines severalNotNullannotations on the same element.Null The annotated element must benull.Null.List Defines severalNullannotations on the same element.Past The annotated element must be a date in the past.Past.List Defines severalPastannotations on the same element.Pattern The annotatedCharSequencemust match the specified regular expression.Pattern.List Defines severalPatternannotations on the same element.Size The annotated element size must be between the specified boundaries (included).Size.List Defines severalSizeannotations on the same element.