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 * http://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.util.Locale; 21 22 /** 23 * <p><b>Float Validation</b> and Conversion routines (<code>java.lang.Float</code>).</p> 24 * 25 * <p>This validator provides a number of methods for 26 * validating/converting a <code>String</code> value to 27 * a <code>Float</code> using <code>java.text.NumberFormat</code> 28 * to parse either:</p> 29 * <ul> 30 * <li>using the default format for the default <code>Locale</code></li> 31 * <li>using a specified pattern with the default <code>Locale</code></li> 32 * <li>using the default format for a specified <code>Locale</code></li> 33 * <li>using a specified pattern with a specified <code>Locale</code></li> 34 * </ul> 35 * 36 * <p>Use one of the <code>isValid()</code> methods to just validate or 37 * one of the <code>validate()</code> methods to validate and receive a 38 * <i>converted</i> <code>Float</code> value.</p> 39 * 40 * <p>Once a value has been successfully converted the following 41 * methods can be used to perform minimum, maximum and range checks:</p> 42 * <ul> 43 * <li><code>minValue()</code> checks whether the value is greater 44 * than or equal to a specified minimum.</li> 45 * <li><code>maxValue()</code> checks whether the value is less 46 * than or equal to a specified maximum.</li> 47 * <li><code>isInRange()</code> checks whether the value is within 48 * a specified range of values.</li> 49 * </ul> 50 * 51 * <p>So that the same mechanism used for parsing an <i>input</i> value 52 * for validation can be used to format <i>output</i>, corresponding 53 * <code>format()</code> methods are also provided. That is you can 54 * format either:</p> 55 * <ul> 56 * <li>using the default format for the default <code>Locale</code></li> 57 * <li>using a specified pattern with the default <code>Locale</code></li> 58 * <li>using the default format for a specified <code>Locale</code></li> 59 * <li>using a specified pattern with a specified <code>Locale</code></li> 60 * </ul> 61 * 62 * @since 1.3.0 63 */ 64 public class FloatValidator extends AbstractNumberValidator { 65 66 private static final long serialVersionUID = -4513245432806414267L; 67 68 private static final FloatValidator VALIDATOR = new FloatValidator(); 69 70 /** 71 * Gets the singleton instance of this validator. 72 * @return A singleton instance of the FloatValidator. 73 */ 74 public static FloatValidator getInstance() { 75 return VALIDATOR; 76 } 77 78 /** 79 * Constructs a <i>strict</i> instance. 80 */ 81 public FloatValidator() { 82 this(true, STANDARD_FORMAT); 83 } 84 85 /** 86 * <p>Construct an instance with the specified strict setting 87 * and format type.</p> 88 * 89 * <p>The <code>formatType</code> specified what type of 90 * <code>NumberFormat</code> is created - valid types 91 * are:</p> 92 * <ul> 93 * <li>AbstractNumberValidator.STANDARD_FORMAT -to create 94 * <i>standard</i> number formats (the default).</li> 95 * <li>AbstractNumberValidator.CURRENCY_FORMAT -to create 96 * <i>currency</i> number formats.</li> 97 * <li>AbstractNumberValidator.PERCENT_FORMAT -to create 98 * <i>percent</i> number formats (the default).</li> 99 * </ul> 100 * 101 * @param strict {@code true} 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 FloatValidator(final boolean strict, final int formatType) { 107 super(strict, formatType, true); 108 } 109 110 /** 111 * Check if the value is within a specified range. 112 * 113 * @param value The <code>Number</code> value to check. 114 * @param min The minimum value of the range. 115 * @param max The maximum value of the range. 116 * @return {@code true} if the value is within the 117 * specified range. 118 */ 119 public boolean isInRange(final float value, final float min, final float max) { 120 return value >= min && value <= max; 121 } 122 123 /** 124 * Check if the value is within a specified range. 125 * 126 * @param value The <code>Number</code> value to check. 127 * @param min The minimum value of the range. 128 * @param max The maximum value of the range. 129 * @return {@code true} if the value is within the 130 * specified range. 131 */ 132 public boolean isInRange(final Float value, final float min, final float max) { 133 return isInRange(value.floatValue(), min, max); 134 } 135 136 /** 137 * Check if the value is less than or equal to a maximum. 138 * 139 * @param value The value validation is being performed on. 140 * @param max The maximum value. 141 * @return {@code true} if the value is less than 142 * or equal to the maximum. 143 */ 144 public boolean maxValue(final float value, final float max) { 145 return value <= max; 146 } 147 148 /** 149 * Check if the value is less than or equal to a maximum. 150 * 151 * @param value The value validation is being performed on. 152 * @param max The maximum value. 153 * @return {@code true} if the value is less than 154 * or equal to the maximum. 155 */ 156 public boolean maxValue(final Float value, final float max) { 157 return maxValue(value.floatValue(), max); 158 } 159 160 /** 161 * Check if the value is greater than or equal to a minimum. 162 * 163 * @param value The value validation is being performed on. 164 * @param min The minimum value. 165 * @return {@code true} if the value is greater than 166 * or equal to the minimum. 167 */ 168 public boolean minValue(final float value, final float min) { 169 return value >= min; 170 } 171 172 /** 173 * Check if the value is greater than or equal to a minimum. 174 * 175 * @param value The value validation is being performed on. 176 * @param min The minimum value. 177 * @return {@code true} if the value is greater than 178 * or equal to the minimum. 179 */ 180 public boolean minValue(final Float value, final float min) { 181 return minValue(value.floatValue(), min); 182 } 183 184 /** 185 * <p>Perform further validation and convert the <code>Number</code> to 186 * a <code>Float</code>.</p> 187 * 188 * @param value The parsed <code>Number</code> object created. 189 * @param formatter The Format used to parse the value with. 190 * @return The parsed <code>Number</code> converted to a 191 * <code>Float</code> if valid or {@code null} if invalid. 192 */ 193 @Override 194 protected Object processParsedValue(final Object value, final Format formatter) { 195 196 final double doubleValue = ((Number) value).doubleValue(); 197 198 if (doubleValue > 0) { 199 if (doubleValue < Float.MIN_VALUE) { 200 return null; 201 } 202 if (doubleValue > Float.MAX_VALUE) { 203 return null; 204 } 205 } else if (doubleValue < 0) { 206 final double posDouble = doubleValue * -1; 207 if (posDouble < Float.MIN_VALUE) { 208 return null; 209 } 210 if (posDouble > Float.MAX_VALUE) { 211 return null; 212 } 213 } 214 215 return Float.valueOf((float) doubleValue); 216 217 } 218 219 /** 220 * <p>Validate/convert a <code>Float</code> using the default 221 * <code>Locale</code>. 222 * 223 * @param value The value validation is being performed on. 224 * @return The parsed <code>Float</code> if valid or {@code null} 225 * if invalid. 226 */ 227 public Float validate(final String value) { 228 return (Float) parse(value, (String) null, (Locale) null); 229 } 230 231 /** 232 * <p>Validate/convert a <code>Float</code> using the 233 * specified <code>Locale</code>. 234 * 235 * @param value The value validation is being performed on. 236 * @param locale The locale to use for the number format, system default if null. 237 * @return The parsed <code>Float</code> if valid or {@code null} if invalid. 238 */ 239 public Float validate(final String value, final Locale locale) { 240 return (Float) parse(value, (String) null, locale); 241 } 242 243 /** 244 * <p>Validate/convert a <code>Float</code> using the 245 * specified <i>pattern</i>. 246 * 247 * @param value The value validation is being performed on. 248 * @param pattern The pattern used to validate the value against. 249 * @return The parsed <code>Float</code> if valid or {@code null} if invalid. 250 */ 251 public Float validate(final String value, final String pattern) { 252 return (Float) parse(value, pattern, (Locale) null); 253 } 254 255 /** 256 * <p>Validate/convert a <code>Float</code> using the 257 * specified pattern and/ or <code>Locale</code>. 258 * 259 * @param value The value validation is being performed on. 260 * @param pattern The pattern used to validate the value against, or the 261 * default for the <code>Locale</code> if {@code null}. 262 * @param locale The locale to use for the date format, system default if null. 263 * @return The parsed <code>Float</code> if valid or {@code null} if invalid. 264 */ 265 public Float validate(final String value, final String pattern, final Locale locale) { 266 return (Float) parse(value, pattern, locale); 267 } 268 269 }