Java Doc for GenericValidator.java in  » Library » Apache-commons-validator-1.3.1-src » org » apache » commons » validator » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Library » Apache commons validator 1.3.1 src » org.apache.commons.validator 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.commons.validator.GenericValidator

GenericValidator
public class GenericValidator implements Serializable(Code)
This class contains basic methods for performing validations.
version:
   $Revision: 478334 $ $Date: 2006-11-22 21:31:54 +0000 (Wed, 22 Nov 2006) $




Method Summary
public static  booleanisBlankOrNull(String value)
    

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


Parameters:
  value - The value validation is being performed on.
public static  booleanisByte(String value)
    

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


Parameters:
  value - The value validation is being performed on.
public static  booleanisCreditCard(String value)
     Checks if the field is a valid credit card number.
Parameters:
  value - The value validation is being performed on.
public static  booleanisDate(String value, Locale locale)
    

Checks if the field is a valid date.

public static  booleanisDate(String value, String datePattern, boolean strict)
    

Checks if the field is a valid date.

public static  booleanisDouble(String value)
    

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


Parameters:
  value - The value validation is being performed on.
public static  booleanisEmail(String value)
    

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


Parameters:
  value - The value validation is being performed on.
public static  booleanisFloat(String value)
    

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


Parameters:
  value - The value validation is being performed on.
public static  booleanisInRange(byte value, byte min, byte max)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum value of the range.
Parameters:
  max - The maximum value of the range.
public static  booleanisInRange(int value, int min, int max)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum value of the range.
Parameters:
  max - The maximum value of the range.
public static  booleanisInRange(float value, float min, float max)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum value of the range.
Parameters:
  max - The maximum value of the range.
public static  booleanisInRange(short value, short min, short max)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum value of the range.
Parameters:
  max - The maximum value of the range.
public static  booleanisInRange(long value, long min, long max)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum value of the range.
Parameters:
  max - The maximum value of the range.
public static  booleanisInRange(double value, double min, double max)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum value of the range.
Parameters:
  max - The maximum value of the range.
public static  booleanisInt(String value)
    

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


Parameters:
  value - The value validation is being performed on.
public static  booleanisLong(String value)
    

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


Parameters:
  value - The value validation is being performed on.
public static  booleanisShort(String value)
    

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


Parameters:
  value - The value validation is being performed on.
public static  booleanisUrl(String 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.
Parameters:
  value - The value validation is being performed on.
public static  booleanmatchRegexp(String value, String regexp)
    

Checks if the value matches the regular expression.


Parameters:
  value - The value validation is being performed on.
Parameters:
  regexp - The regular expression.
public static  booleanmaxLength(String value, int max)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  max - The maximum length.
public static  booleanmaxLength(String value, int max, int lineEndLength)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  max - The maximum length.
Parameters:
  lineEndLength - The length to use for line endings.
public static  booleanmaxValue(int value, int max)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  max - The maximum numeric value.
public static  booleanmaxValue(long value, long max)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  max - The maximum numeric value.
public static  booleanmaxValue(double value, double max)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  max - The maximum numeric value.
public static  booleanmaxValue(float value, float max)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  max - The maximum numeric value.
public static  booleanminLength(String value, int min)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum length.
public static  booleanminLength(String value, int min, int lineEndLength)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum length.
Parameters:
  lineEndLength - The length to use for line endings.
public static  booleanminValue(int value, int min)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum numeric value.
public static  booleanminValue(long value, long min)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum numeric value.
public static  booleanminValue(double value, double min)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum numeric value.
public static  booleanminValue(float value, float min)
    

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum numeric value.



Method Detail
isBlankOrNull
public static boolean isBlankOrNull(String value)(Code)

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


Parameters:
  value - The value validation is being performed on. true if blank or null.



isByte
public static boolean isByte(String value)(Code)

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


Parameters:
  value - The value validation is being performed on. true if the value can be converted to a Byte.



isCreditCard
public static boolean isCreditCard(String value)(Code)
Checks if the field is a valid credit card number.
Parameters:
  value - The value validation is being performed on. true if the value is valid Credit Card Number.



isDate
public static boolean isDate(String value, Locale locale)(Code)

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.


Parameters:
  value - The value validation is being performed on.
Parameters:
  locale - The locale to use for the date format, defaults to the system default if null. true if the value can be converted to a Date.



isDate
public static boolean isDate(String value, String datePattern, boolean strict)(Code)

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.


Parameters:
  value - The value validation is being performed on.
Parameters:
  datePattern - The pattern passed to SimpleDateFormat.
Parameters:
  strict - Whether or not to have an exact match of the datePattern. true if the value can be converted to a Date.



isDouble
public static boolean isDouble(String value)(Code)

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


Parameters:
  value - The value validation is being performed on. true if the value can be converted to a Double.



isEmail
public static boolean isEmail(String value)(Code)

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


Parameters:
  value - The value validation is being performed on. true if the value is valid Email Address.



isFloat
public static boolean isFloat(String value)(Code)

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


Parameters:
  value - The value validation is being performed on. true if the value can be converted to a Float.



isInRange
public static boolean isInRange(byte value, byte min, byte max)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum value of the range.
Parameters:
  max - The maximum value of the range. true if the value is in the specified range.



isInRange
public static boolean isInRange(int value, int min, int max)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum value of the range.
Parameters:
  max - The maximum value of the range. true if the value is in the specified range.



isInRange
public static boolean isInRange(float value, float min, float max)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum value of the range.
Parameters:
  max - The maximum value of the range. true if the value is in the specified range.



isInRange
public static boolean isInRange(short value, short min, short max)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum value of the range.
Parameters:
  max - The maximum value of the range. true if the value is in the specified range.



isInRange
public static boolean isInRange(long value, long min, long max)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum value of the range.
Parameters:
  max - The maximum value of the range. true if the value is in the specified range.



isInRange
public static boolean isInRange(double value, double min, double max)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum value of the range.
Parameters:
  max - The maximum value of the range. true if the value is in the specified range.



isInt
public static boolean isInt(String value)(Code)

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


Parameters:
  value - The value validation is being performed on. true if the value can be converted to an Integer.



isLong
public static boolean isLong(String value)(Code)

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


Parameters:
  value - The value validation is being performed on. true if the value can be converted to a Long.



isShort
public static boolean isShort(String value)(Code)

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


Parameters:
  value - The value validation is being performed on. true if the value can be converted to a Short.



isUrl
public static boolean isUrl(String value)(Code)

Checks if a field is a valid url address.

If you need to modify what is considered valid then consider using the UrlValidator directly.
Parameters:
  value - The value validation is being performed on. true if the value is valid Url.



matchRegexp
public static boolean matchRegexp(String value, String regexp)(Code)

Checks if the value matches the regular expression.


Parameters:
  value - The value validation is being performed on.
Parameters:
  regexp - The regular expression. true if matches the regular expression.



maxLength
public static boolean maxLength(String value, int max)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  max - The maximum length. true if the value's length is less than the specified maximum.



maxLength
public static boolean maxLength(String value, int max, int lineEndLength)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  max - The maximum length.
Parameters:
  lineEndLength - The length to use for line endings. true if the value's length is less than the specified maximum.



maxValue
public static boolean maxValue(int value, int max)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  max - The maximum numeric value. true if the value is <= the specified maximum.



maxValue
public static boolean maxValue(long value, long max)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  max - The maximum numeric value. true if the value is <= the specified maximum.



maxValue
public static boolean maxValue(double value, double max)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  max - The maximum numeric value. true if the value is <= the specified maximum.



maxValue
public static boolean maxValue(float value, float max)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  max - The maximum numeric value. true if the value is <= the specified maximum.



minLength
public static boolean minLength(String value, int min)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum length. true if the value's length is more than the specified minimum.



minLength
public static boolean minLength(String value, int min, int lineEndLength)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum length.
Parameters:
  lineEndLength - The length to use for line endings. true if the value's length is more than the specified minimum.



minValue
public static boolean minValue(int value, int min)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum numeric value. true if the value is >= the specified minimum.



minValue
public static boolean minValue(long value, long min)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum numeric value. true if the value is >= the specified minimum.



minValue
public static boolean minValue(double value, double min)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum numeric value. true if the value is >= the specified minimum.



minValue
public static boolean minValue(float value, float min)(Code)

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


Parameters:
  value - The value validation is being performed on.
Parameters:
  min - The minimum numeric value. true if the value is >= the specified minimum.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.