/* * 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; /** * Validator base class for validating strings. See * {@link com.vaadin.data.validator.AbstractValidator} for more information. * *

* To include the value that failed validation in the exception message you can * use "{0}" in the error message. This will be replaced with the failed value * (converted to string using {@link #toString()}) or "null" if the value is * null. *

* * @author Vaadin Ltd. * @version * 6.8.18 * @since 5.4 */ @SuppressWarnings("serial") public abstract class AbstractStringValidator extends AbstractValidator { /** * Constructs a validator for strings. * *

* Null and empty string values are always accepted. To reject empty values, * set the field being validated as required. *

* * @param errorMessage * the message to be included in an {@link InvalidValueException} * (with "{0}" replaced by the value that failed validation). * */ public AbstractStringValidator(String errorMessage) { super(errorMessage); } /** * Tests if the given value is a valid string. *

* Null values are always accepted. Values that are not {@link String}s are * converted using {@link #toString()}. Then {@link #isValidString(String)} * is used to validate the value. *

* * @param value * the value to check * @return true if the value (or its toString()) is a valid string, false * otherwise */ public boolean isValid(Object value) { if (value == null) { return true; } if (!(value instanceof String)) { value = String.valueOf(value); } return isValidString((String) value); } /** * Checks if the given string is valid. * * @param value * String to check. Can never be null. * @return true if the string is valid, false otherwise */ protected abstract boolean isValidString(String value); }