Source Code Cross Referenced for BigIntegerValidator.java in  » Library » Apache-commons-validator-1.3.1-src » org » apache » commons » validator » routines » 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.routines 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Licensed to the Apache Software Foundation (ASF) under one or more
003:         * contributor license agreements.  See the NOTICE file distributed with
004:         * this work for additional information regarding copyright ownership.
005:         * The ASF licenses this file to You under the Apache License, Version 2.0
006:         * (the "License"); you may not use this file except in compliance with
007:         * the License.  You may obtain a copy of the License at
008:         *
009:         *      http://www.apache.org/licenses/LICENSE-2.0
010:         *
011:         * Unless required by applicable law or agreed to in writing, software
012:         * distributed under the License is distributed on an "AS IS" BASIS,
013:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014:         * See the License for the specific language governing permissions and
015:         * limitations under the License.
016:         */
017:        package org.apache.commons.validator.routines;
018:
019:        import java.math.BigInteger;
020:        import java.text.Format;
021:        import java.util.Locale;
022:
023:        /**
024:         * <p><b>BigInteger Validation</b> and Conversion routines (<code>java.math.BigInteger</code>).</p>
025:         *
026:         * <p>This validator provides a number of methods for
027:         *    validating/converting a <code>String</code> value to
028:         *    a <code>BigInteger</code> using <code>java.text.NumberFormat</code>
029:         *    to parse either:</p>
030:         *    <ul>
031:         *       <li>using the default format for the default <code>Locale</code></li>
032:         *       <li>using a specified pattern with the default <code>Locale</code></li>
033:         *       <li>using the default format for a specified <code>Locale</code></li>
034:         *       <li>using a specified pattern with a specified <code>Locale</code></li>
035:         *    </ul>
036:         *    
037:         * <p>Use one of the <code>isValid()</code> methods to just validate or
038:         *    one of the <code>validate()</code> methods to validate and receive a
039:         *    <i>converted</i> <code>BigInteger</code> value.</p>
040:         * 
041:         * <p>Once a value has been sucessfully converted the following
042:         *    methods can be used to perform minimum, maximum and range checks:</p>
043:         *    <ul>
044:         *       <li><code>minValue()</code> checks whether the value is greater
045:         *           than or equal to a specified minimum.</li>
046:         *       <li><code>maxValue()</code> checks whether the value is less
047:         *           than or equal to a specified maximum.</li>
048:         *       <li><code>isInRange()</code> checks whether the value is within
049:         *           a specified range of values.</li>
050:         *    </ul>
051:         * 
052:         * <p>So that the same mechanism used for parsing an <i>input</i> value 
053:         *    for validation can be used to format <i>output</i>, corresponding
054:         *    <code>format()</code> methods are also provided. That is you can 
055:         *    format either:</p>
056:         *    <ul>
057:         *       <li>using the default format for the default <code>Locale</code></li>
058:         *       <li>using a specified pattern with the default <code>Locale</code></li>
059:         *       <li>using the default format for a specified <code>Locale</code></li>
060:         *       <li>using a specified pattern with a specified <code>Locale</code></li>
061:         *    </ul>
062:         *
063:         * @version $Revision: 478334 $ $Date: 2006-11-22 21:31:54 +0000 (Wed, 22 Nov 2006) $
064:         * @since Validator 1.3.0
065:         */
066:        public class BigIntegerValidator extends AbstractNumberValidator {
067:
068:            private static final BigIntegerValidator VALIDATOR = new BigIntegerValidator();
069:
070:            /**
071:             * Return a singleton instance of this validator.
072:             * @return A singleton instance of the BigIntegerValidator.
073:             */
074:            public static BigIntegerValidator getInstance() {
075:                return VALIDATOR;
076:            }
077:
078:            /**
079:             * Construct a <i>strict</i> instance.
080:             */
081:            public BigIntegerValidator() {
082:                this (true, STANDARD_FORMAT);
083:            }
084:
085:            /**
086:             * <p>Construct an instance with the specified strict setting
087:             *    and format type.</p>
088:             *    
089:             * <p>The <code>formatType</code> specified what type of
090:             *    <code>NumberFormat</code> is created - valid types
091:             *    are:</p>
092:             *    <ul>
093:             *       <li>AbstractNumberValidator.STANDARD_FORMAT -to create
094:             *           <i>standard</i> number formats (the default).</li>
095:             *       <li>AbstractNumberValidator.CURRENCY_FORMAT -to create
096:             *           <i>currency</i> number formats.</li>
097:             *       <li>AbstractNumberValidator.PERCENT_FORMAT -to create
098:             *           <i>percent</i> number formats (the default).</li>
099:             *    </ul>
100:             * 
101:             * @param strict <code>true</code> if strict 
102:             *        <code>Format</code> parsing should be used.
103:             * @param formatType The <code>NumberFormat</code> type to
104:             *        create for validation, default is STANDARD_FORMAT.
105:             */
106:            public BigIntegerValidator(boolean strict, int formatType) {
107:                super (strict, formatType, false);
108:            }
109:
110:            /**
111:             * <p>Validate/convert a <code>BigInteger</code> using the default
112:             *    <code>Locale</code>. 
113:             *
114:             * @param value The value validation is being performed on.
115:             * @return The parsed <code>BigInteger</code> if valid or <code>null</code>
116:             *  if invalid.
117:             */
118:            public BigInteger validate(String value) {
119:                return (BigInteger) parse(value, (String) null, (Locale) null);
120:            }
121:
122:            /**
123:             * <p>Validate/convert a <code>BigInteger</code> using the
124:             *    specified <i>pattern</i>. 
125:             *
126:             * @param value The value validation is being performed on.
127:             * @param pattern The pattern used to validate the value against.
128:             * @return The parsed <code>BigInteger</code> if valid or <code>null</code> if invalid.
129:             */
130:            public BigInteger validate(String value, String pattern) {
131:                return (BigInteger) parse(value, pattern, (Locale) null);
132:            }
133:
134:            /**
135:             * <p>Validate/convert a <code>BigInteger</code> using the
136:             *    specified <code>Locale</code>. 
137:             *
138:             * @param value The value validation is being performed on.
139:             * @param locale The locale to use for the number format, system default if null.
140:             * @return The parsed <code>BigInteger</code> if valid or <code>null</code> if invalid.
141:             */
142:            public BigInteger validate(String value, Locale locale) {
143:                return (BigInteger) parse(value, (String) null, locale);
144:            }
145:
146:            /**
147:             * <p>Validate/convert a <code>BigInteger</code> using the
148:             *    specified pattern and/ or <code>Locale</code>. 
149:             *
150:             * @param value The value validation is being performed on.
151:             * @param pattern The pattern used to validate the value against, or the
152:             *        default for the <code>Locale</code> if <code>null</code>.
153:             * @param locale The locale to use for the date format, system default if null.
154:             * @return The parsed <code>BigInteger</code> if valid or <code>null</code> if invalid.
155:             */
156:            public BigInteger validate(String value, String pattern,
157:                    Locale locale) {
158:                return (BigInteger) parse(value, pattern, locale);
159:            }
160:
161:            /**
162:             * Check if the value is within a specified range.
163:             * 
164:             * @param value The <code>Number</code> value to check.
165:             * @param min The minimum value of the range.
166:             * @param max The maximum value of the range.
167:             * @return <code>true</code> if the value is within the
168:             *         specified range.
169:             */
170:            public boolean isInRange(BigInteger value, long min, long max) {
171:                return (value.longValue() >= min && value.longValue() <= max);
172:            }
173:
174:            /**
175:             * Check if the value is greater than or equal to a minimum.
176:             * 
177:             * @param value The value validation is being performed on.
178:             * @param min The minimum value.
179:             * @return <code>true</code> if the value is greater than
180:             *         or equal to the minimum.
181:             */
182:            public boolean minValue(BigInteger value, long min) {
183:                return (value.longValue() >= min);
184:            }
185:
186:            /**
187:             * Check if the value is less than or equal to a maximum.
188:             * 
189:             * @param value The value validation is being performed on.
190:             * @param max The maximum value.
191:             * @return <code>true</code> if the value is less than
192:             *         or equal to the maximum.
193:             */
194:            public boolean maxValue(BigInteger value, long max) {
195:                return (value.longValue() <= max);
196:            }
197:
198:            /**
199:             * Convert the parsed value to a <code>BigInteger</code>.
200:             * 
201:             * @param value The parsed <code>Number</code> object created.
202:             * @param formatter The Format used to parse the value with.
203:             * @return The parsed <code>Number</code> converted to a 
204:             *         <code>BigInteger</code>.
205:             */
206:            protected Object processParsedValue(Object value, Format formatter) {
207:                return BigInteger.valueOf(((Number) value).longValue());
208:            }
209:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.