Is it possible to validate that a Character is either M or F or do I need to use a string with a regex?
@Pattern(regexp = "^[MF]{1}$", message = "customer.sex.regex")
private String sex;
I would like to use
private Character sex;
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your should this regular expression for accepting only M or F.
In your second case of using as Character, you need to validate that this character is whether “M” or “F”. Other can be set as sex.
You cannot use
@PatternforCharactervariable, You will get below exception.