/* * Copyright 2011 Vaadin Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.vaadin.data.validator; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * String validator comparing the string against a Java regular expression. Both * complete matches and substring matches are supported. * *
* For the Java regular expression syntax, see * {@link java.util.regex.Pattern#sum} *
** See {@link com.vaadin.data.validator.AbstractStringValidator} for more * information. *
* * @author Vaadin Ltd. * @version * 6.8.18 * @since 5.4 */ @SuppressWarnings("serial") public class RegexpValidator extends AbstractStringValidator { private Pattern pattern; private boolean complete; private transient Matcher matcher = null; /** * Creates a validator for checking that the regular expression matches the * complete string to validate. * * @param regexp * a Java regular expression * @param errorMessage * the message to display in case the value does not validate. */ public RegexpValidator(String regexp, String errorMessage) { this(regexp, true, errorMessage); } /** * Creates a validator for checking that the regular expression matches the * string to validate. * * @param regexp * a Java regular expression * @param complete * true to use check for a complete match, false to look for a * matching substring * @param errorMessage * the message to display in case the value does not validate. */ public RegexpValidator(String regexp, boolean complete, String errorMessage) { super(errorMessage); pattern = Pattern.compile(regexp); this.complete = complete; } @Override protected boolean isValidString(String value) { if (complete) { return getMatcher(value).matches(); } else { return getMatcher(value).find(); } } /** * Get a new or reused matcher for the pattern * * @param value * the string to find matches in * @return Matcher for the string */ private Matcher getMatcher(String value) { if (matcher == null) { matcher = pattern.matcher(value); } else { matcher.reset(value); } return matcher; } }