Trying to use Android Saripaar validator for case when only one of two rules is valid. For example:
@Empty // my custom rule
@Or
@Email(messageResId = R.string.useremail_wrong_pattern)
EditText etUserEmail;
In example above I need that etUserEmail can be empty (if user hasn't input anything in this field) or is valid email (if user has inputed email). But example above don't work correctly. Even if user hasn't input anything, validator apply @Email rule to etUserEmail field.
Is there a way to implement this task? Maybe, I need create custom rule for @Or annotation? Can somebody give this rule example?