1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17 package org.apache.commons.validator.routines;
18
19 import java.text.Format;
20 import java.text.NumberFormat;
21 import java.util.Locale;
22
23 /**
24 * <p><strong>Short Validation</strong> and Conversion routines ({@link Short}).</p>
25 *
26 * <p>This validator provides a number of methods for
27 * validating/converting a {@link String} value to
28 * a {@code Short} using {@link NumberFormat}
29 * to parse either:</p>
30 * <ul>
31 * <li>using the default format for the default {@link Locale}</li>
32 * <li>using a specified pattern with the default {@link Locale}</li>
33 * <li>using the default format for a specified {@link Locale}</li>
34 * <li>using a specified pattern with a specified {@link Locale}</li>
35 * </ul>
36 *
37 * <p>Use one of the {@code isValid()} methods to just validate or
38 * one of the {@code validate()} methods to validate and receive a
39 * <em>converted</em> {@code Short} value.</p>
40 *
41 * <p>Once a value has been successfully converted the following
42 * methods can be used to perform minimum, maximum and range checks:</p>
43 * <ul>
44 * <li>{@code minValue()} checks whether the value is greater
45 * than or equal to a specified minimum.</li>
46 * <li>{@code maxValue()} checks whether the value is less
47 * than or equal to a specified maximum.</li>
48 * <li>{@code isInRange()} checks whether the value is within
49 * a specified range of values.</li>
50 * </ul>
51 *
52 * <p>So that the same mechanism used for parsing an <em>input</em> value
53 * for validation can be used to format <em>output</em>, corresponding
54 * {@code format()} methods are also provided. That is you can
55 * format either:</p>
56 * <ul>
57 * <li>using the default format for the default {@link Locale}</li>
58 * <li>using a specified pattern with the default {@link Locale}</li>
59 * <li>using the default format for a specified {@link Locale}</li>
60 * <li>using a specified pattern with a specified {@link Locale}</li>
61 * </ul>
62 *
63 * @since 1.3.0
64 */
65 public class ShortValidator extends AbstractNumberValidator {
66
67 private static final long serialVersionUID = -5227510699747787066L;
68
69 private static final ShortValidator VALIDATOR = new ShortValidator();
70
71 /**
72 * Gets the singleton instance of this validator.
73 *
74 * @return A singleton instance of the ShortValidator.
75 */
76 public static ShortValidator getInstance() {
77 return VALIDATOR;
78 }
79
80 /**
81 * Constructs a <em>strict</em> instance.
82 */
83 public ShortValidator() {
84 this(true, STANDARD_FORMAT);
85 }
86
87 /**
88 * <p>Construct an instance with the specified strict setting
89 * and format type.</p>
90 *
91 * <p>The {@code formatType} specified what type of
92 * {@code NumberFormat} is created - valid types
93 * are:</p>
94 * <ul>
95 * <li>AbstractNumberValidator.STANDARD_FORMAT -to create
96 * <em>standard</em> number formats (the default).</li>
97 * <li>AbstractNumberValidator.CURRENCY_FORMAT -to create
98 * <em>currency</em> number formats.</li>
99 * <li>AbstractNumberValidator.PERCENT_FORMAT -to create
100 * <em>percent</em> number formats (the default).</li>
101 * </ul>
102 *
103 * @param strict {@code true} if strict
104 * {@code Format} parsing should be used.
105 * @param formatType The {@code NumberFormat} type to
106 * create for validation, default is STANDARD_FORMAT.
107 */
108 public ShortValidator(final boolean strict, final int formatType) {
109 super(strict, formatType, false);
110 }
111
112 /**
113 * Check if the value is within a specified range.
114 *
115 * @param value The {@code Number} value to check.
116 * @param min The minimum value of the range.
117 * @param max The maximum value of the range.
118 * @return {@code true} if the value is within the
119 * specified range.
120 */
121 public boolean isInRange(final short value, final short min, final short max) {
122 return value >= min && value <= max;
123 }
124
125 /**
126 * Check if the value is within a specified range.
127 *
128 * @param value The {@code Number} value to check.
129 * @param min The minimum value of the range.
130 * @param max The maximum value of the range.
131 * @return {@code true} if the value is within the
132 * specified range.
133 */
134 public boolean isInRange(final Short value, final short min, final short max) {
135 return isInRange(value.shortValue(), min, max);
136 }
137
138 /**
139 * Check if the value is less than or equal to a maximum.
140 *
141 * @param value The value validation is being performed on.
142 * @param max The maximum value.
143 * @return {@code true} if the value is less than
144 * or equal to the maximum.
145 */
146 public boolean maxValue(final short value, final short max) {
147 return value <= max;
148 }
149
150 /**
151 * Check if the value is less than or equal to a maximum.
152 *
153 * @param value The value validation is being performed on.
154 * @param max The maximum value.
155 * @return {@code true} if the value is less than
156 * or equal to the maximum.
157 */
158 public boolean maxValue(final Short value, final short max) {
159 return maxValue(value.shortValue(), max);
160 }
161
162 /**
163 * Check if the value is greater than or equal to a minimum.
164 *
165 * @param value The value validation is being performed on.
166 * @param min The minimum value.
167 * @return {@code true} if the value is greater than
168 * or equal to the minimum.
169 */
170 public boolean minValue(final short value, final short min) {
171 return value >= min;
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} if the value is greater than
180 * or equal to the minimum.
181 */
182 public boolean minValue(final Short value, final short min) {
183 return minValue(value.shortValue(), min);
184 }
185
186 /**
187 * <p>Perform further validation and convert the {@code Number} to
188 * a {@code Short}.</p>
189 *
190 * @param value The parsed {@code Number} object created.
191 * @param formatter The Format used to parse the value with.
192 * @return The parsed {@code Number} converted to a
193 * {@code Short} if valid or {@code null} if invalid.
194 */
195 @Override
196 protected Object processParsedValue(final Object value, final Format formatter) {
197
198 final long longValue = ((Number) value).longValue();
199
200 if (longValue < Short.MIN_VALUE ||
201 longValue > Short.MAX_VALUE) {
202 return null;
203 }
204 return Short.valueOf((short) longValue);
205 }
206
207 /**
208 * <p>Validate/convert a {@code Short} using the default
209 * {@link Locale}.
210 *
211 * @param value The value validation is being performed on.
212 * @return The parsed {@code Short} if valid or {@code null}
213 * if invalid.
214 */
215 public Short validate(final String value) {
216 return (Short) parse(value, (String) null, (Locale) null);
217 }
218
219 /**
220 * <p>Validate/convert a {@code Short} using the
221 * specified {@link Locale}.
222 *
223 * @param value The value validation is being performed on.
224 * @param locale The locale to use for the number format, system default if null.
225 * @return The parsed {@code Short} if valid or {@code null} if invalid.
226 */
227 public Short validate(final String value, final Locale locale) {
228 return (Short) parse(value, (String) null, locale);
229 }
230
231 /**
232 * <p>Validate/convert a {@code Short} using the
233 * specified <em>pattern</em>.
234 *
235 * @param value The value validation is being performed on.
236 * @param pattern The pattern used to validate the value against.
237 * @return The parsed {@code Short} if valid or {@code null} if invalid.
238 */
239 public Short validate(final String value, final String pattern) {
240 return (Short) parse(value, pattern, (Locale) null);
241 }
242
243 /**
244 * <p>Validate/convert a {@code Short} using the
245 * specified pattern and/ or {@link Locale}.
246 *
247 * @param value The value validation is being performed on.
248 * @param pattern The pattern used to validate the value against, or the
249 * default for the {@link Locale} if {@code null}.
250 * @param locale The locale to use for the date format, system default if null.
251 * @return The parsed {@code Short} if valid or {@code null} if invalid.
252 */
253 public Short validate(final String value, final String pattern, final Locale locale) {
254 return (Short) parse(value, pattern, locale);
255 }
256 }