All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.commons.validator.GenericValidator Maven / Gradle / Ivy

Go to download

Apache Commons Validator provides the building blocks for both client side validation and server side data validation. It may be used standalone or with a framework like Struts.

There is a newer version: 1.8.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.commons.validator;

import java.io.Serializable;
import java.util.Locale;
import java.util.regex.Pattern;

import org.apache.commons.validator.routines.UrlValidator;
import org.apache.commons.validator.routines.CreditCardValidator;
import org.apache.commons.validator.routines.DateValidator;
import org.apache.commons.validator.routines.EmailValidator;

/**
 * This class contains basic methods for performing validations.
 *
 * @version $Revision: 1649191 $
 */
public class GenericValidator implements Serializable {

    private static final long serialVersionUID = -7212095066891517618L;

    /**
     * UrlValidator used in wrapper method.
     */
    private static final UrlValidator URL_VALIDATOR = new UrlValidator();

    /**
     * CreditCardValidator used in wrapper method.
     */
    private static final CreditCardValidator CREDIT_CARD_VALIDATOR =
        new CreditCardValidator();

    /**
     * 

Checks if the field isn't null and length of the field is greater * than zero not including whitespace.

* * @param value The value validation is being performed on. * @return true if blank or null. */ public static boolean isBlankOrNull(String value) { return ((value == null) || (value.trim().length() == 0)); } /** *

Checks if the value matches the regular expression.

* * @param value The value validation is being performed on. * @param regexp The regular expression. * @return true if matches the regular expression. */ public static boolean matchRegexp(String value, String regexp) { if (regexp == null || regexp.length() <= 0) { return false; } return Pattern.matches(regexp, value); } /** *

Checks if the value can safely be converted to a byte primitive.

* * @param value The value validation is being performed on. * @return true if the value can be converted to a Byte. */ public static boolean isByte(String value) { return (GenericTypeValidator.formatByte(value) != null); } /** *

Checks if the value can safely be converted to a short primitive.

* * @param value The value validation is being performed on. * @return true if the value can be converted to a Short. */ public static boolean isShort(String value) { return (GenericTypeValidator.formatShort(value) != null); } /** *

Checks if the value can safely be converted to a int primitive.

* * @param value The value validation is being performed on. * @return true if the value can be converted to an Integer. */ public static boolean isInt(String value) { return (GenericTypeValidator.formatInt(value) != null); } /** *

Checks if the value can safely be converted to a long primitive.

* * @param value The value validation is being performed on. * @return true if the value can be converted to a Long. */ public static boolean isLong(String value) { return (GenericTypeValidator.formatLong(value) != null); } /** *

Checks if the value can safely be converted to a float primitive.

* * @param value The value validation is being performed on. * @return true if the value can be converted to a Float. */ public static boolean isFloat(String value) { return (GenericTypeValidator.formatFloat(value) != null); } /** *

Checks if the value can safely be converted to a double primitive.

* * @param value The value validation is being performed on. * @return true if the value can be converted to a Double. */ public static boolean isDouble(String value) { return (GenericTypeValidator.formatDouble(value) != null); } /** *

Checks if the field is a valid date. The Locale is * used with java.text.DateFormat. The setLenient method * is set to false for all.

* * @param value The value validation is being performed on. * @param locale The locale to use for the date format, defaults to the * system default if null. * @return true if the value can be converted to a Date. */ public static boolean isDate(String value, Locale locale) { return DateValidator.getInstance().isValid(value, locale); } /** *

Checks if the field is a valid date. The pattern is used with * java.text.SimpleDateFormat. If strict is true, then the * length will be checked so '2/12/1999' will not pass validation with * the format 'MM/dd/yyyy' because the month isn't two digits. * The setLenient method is set to false for all.

* * @param value The value validation is being performed on. * @param datePattern The pattern passed to SimpleDateFormat. * @param strict Whether or not to have an exact match of the datePattern. * @return true if the value can be converted to a Date. */ public static boolean isDate(String value, String datePattern, boolean strict) { // TODO method isValid() not yet supported in routines version return org.apache.commons.validator.DateValidator.getInstance().isValid(value, datePattern, strict); } /** *

Checks if a value is within a range (min & max specified * in the vars attribute).

* * @param value The value validation is being performed on. * @param min The minimum value of the range. * @param max The maximum value of the range. * @return true if the value is in the specified range. */ public static boolean isInRange(byte value, byte min, byte max) { return ((value >= min) && (value <= max)); } /** *

Checks if a value is within a range (min & max specified * in the vars attribute).

* * @param value The value validation is being performed on. * @param min The minimum value of the range. * @param max The maximum value of the range. * @return true if the value is in the specified range. */ public static boolean isInRange(int value, int min, int max) { return ((value >= min) && (value <= max)); } /** *

Checks if a value is within a range (min & max specified * in the vars attribute).

* * @param value The value validation is being performed on. * @param min The minimum value of the range. * @param max The maximum value of the range. * @return true if the value is in the specified range. */ public static boolean isInRange(float value, float min, float max) { return ((value >= min) && (value <= max)); } /** *

Checks if a value is within a range (min & max specified * in the vars attribute).

* * @param value The value validation is being performed on. * @param min The minimum value of the range. * @param max The maximum value of the range. * @return true if the value is in the specified range. */ public static boolean isInRange(short value, short min, short max) { return ((value >= min) && (value <= max)); } /** *

Checks if a value is within a range (min & max specified * in the vars attribute).

* * @param value The value validation is being performed on. * @param min The minimum value of the range. * @param max The maximum value of the range. * @return true if the value is in the specified range. */ public static boolean isInRange(long value, long min, long max) { return ((value >= min) && (value <= max)); } /** *

Checks if a value is within a range (min & max specified * in the vars attribute).

* * @param value The value validation is being performed on. * @param min The minimum value of the range. * @param max The maximum value of the range. * @return true if the value is in the specified range. */ public static boolean isInRange(double value, double min, double max) { return ((value >= min) && (value <= max)); } /** * Checks if the field is a valid credit card number. * @param value The value validation is being performed on. * @return true if the value is valid Credit Card Number. */ public static boolean isCreditCard(String value) { return CREDIT_CARD_VALIDATOR.isValid(value); } /** *

Checks if a field has a valid e-mail address.

* * @param value The value validation is being performed on. * @return true if the value is valid Email Address. */ public static boolean isEmail(String value) { return EmailValidator.getInstance().isValid(value); } /** *

Checks if a field is a valid url address.

* If you need to modify what is considered valid then * consider using the UrlValidator directly. * * @param value The value validation is being performed on. * @return true if the value is valid Url. */ public static boolean isUrl(String value) { return URL_VALIDATOR.isValid(value); } /** *

Checks if the value's length is less than or equal to the max.

* * @param value The value validation is being performed on. * @param max The maximum length. * @return true if the value's length is less than the specified maximum. */ public static boolean maxLength(String value, int max) { return (value.length() <= max); } /** *

Checks if the value's adjusted length is less than or equal to the max.

* * @param value The value validation is being performed on. * @param max The maximum length. * @param lineEndLength The length to use for line endings. * @return true if the value's length is less than the specified maximum. */ public static boolean maxLength(String value, int max, int lineEndLength) { int adjustAmount = adjustForLineEnding(value, lineEndLength); return ((value.length() + adjustAmount) <= max); } /** *

Checks if the value's length is greater than or equal to the min.

* * @param value The value validation is being performed on. * @param min The minimum length. * @return true if the value's length is more than the specified minimum. */ public static boolean minLength(String value, int min) { return (value.length() >= min); } /** *

Checks if the value's adjusted length is greater than or equal to the min.

* * @param value The value validation is being performed on. * @param min The minimum length. * @param lineEndLength The length to use for line endings. * @return true if the value's length is more than the specified minimum. */ public static boolean minLength(String value, int min, int lineEndLength) { int adjustAmount = adjustForLineEnding(value, lineEndLength); return ((value.length() + adjustAmount) >= min); } /** * Calculate an adjustment amount for line endings. * * See Bug 37962 for the rational behind this. * * @param value The value validation is being performed on. * @param lineEndLength The length to use for line endings. * @return the adjustment amount. */ private static int adjustForLineEnding(String value, int lineEndLength) { int nCount = 0; int rCount = 0; for (int i = 0; i < value.length(); i++) { if (value.charAt(i) == '\n') { nCount++; } if (value.charAt(i) == '\r') { rCount++; } } return ((nCount * lineEndLength) - (rCount + nCount)); } // See http://issues.apache.org/bugzilla/show_bug.cgi?id=29015 WRT the "value" methods /** *

Checks if the value is greater than or equal to the min.

* * @param value The value validation is being performed on. * @param min The minimum numeric value. * @return true if the value is >= the specified minimum. */ public static boolean minValue(int value, int min) { return (value >= min); } /** *

Checks if the value is greater than or equal to the min.

* * @param value The value validation is being performed on. * @param min The minimum numeric value. * @return true if the value is >= the specified minimum. */ public static boolean minValue(long value, long min) { return (value >= min); } /** *

Checks if the value is greater than or equal to the min.

* * @param value The value validation is being performed on. * @param min The minimum numeric value. * @return true if the value is >= the specified minimum. */ public static boolean minValue(double value, double min) { return (value >= min); } /** *

Checks if the value is greater than or equal to the min.

* * @param value The value validation is being performed on. * @param min The minimum numeric value. * @return true if the value is >= the specified minimum. */ public static boolean minValue(float value, float min) { return (value >= min); } /** *

Checks if the value is less than or equal to the max.

* * @param value The value validation is being performed on. * @param max The maximum numeric value. * @return true if the value is <= the specified maximum. */ public static boolean maxValue(int value, int max) { return (value <= max); } /** *

Checks if the value is less than or equal to the max.

* * @param value The value validation is being performed on. * @param max The maximum numeric value. * @return true if the value is <= the specified maximum. */ public static boolean maxValue(long value, long max) { return (value <= max); } /** *

Checks if the value is less than or equal to the max.

* * @param value The value validation is being performed on. * @param max The maximum numeric value. * @return true if the value is <= the specified maximum. */ public static boolean maxValue(double value, double max) { return (value <= max); } /** *

Checks if the value is less than or equal to the max.

* * @param value The value validation is being performed on. * @param max The maximum numeric value. * @return true if the value is <= the specified maximum. */ public static boolean maxValue(float value, float max) { return (value <= max); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy