Skip to content

0.1.2

Compare
Choose a tag to compare
@linux-china linux-china released this 12 Sep 21:04
· 63 commits to master since this release

Custom Annotation with Validation annotation, such as @phone

@Documented
@Constraint(validatedBy = {})
@Target({METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TYPE_USE})
@Retention(RUNTIME)
@Pattern(regexp = "(136|137|186)\\d{8}")
public @interface Phone {
}