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
018package org.apache.commons.beanutils2.locale.converters;
019
020import java.text.ParseException;
021import java.util.Locale;
022
023import org.apache.commons.beanutils2.ConversionException;
024
025/**
026 * Standard {@link org.apache.commons.beanutils2.locale.LocaleConverter} implementation that converts an incoming locale-sensitive String into a
027 * {@link java.math.BigDecimal} object, optionally using a default value or throwing a {@link org.apache.commons.beanutils2.ConversionException} if a conversion
028 * error occurs.
029 */
030public class FloatLocaleConverter extends DecimalLocaleConverter<Float> {
031
032    /**
033     * Builds instances of {@link ByteLocaleConverter}.
034     */
035    public static class Builder extends DecimalLocaleConverter.Builder<Builder, Float> {
036
037        @Override
038        public FloatLocaleConverter get() {
039            return new FloatLocaleConverter(defaultValue, locale, pattern, useDefault || defaultValue != null, localizedPattern);
040        }
041
042    }
043
044    /**
045     * Constructs a new builder.
046     *
047     * @return a new builder.
048     */
049    public static Builder builder() {
050        return new Builder();
051    }
052
053    private FloatLocaleConverter(final Float defaultValue, final Locale locale, final String pattern, final boolean useDefault, final boolean locPattern) {
054        super(defaultValue, locale, pattern, useDefault, locPattern);
055    }
056
057    /**
058     * Parses the specified locale-sensitive input object into an output object of the specified type. This method will return Float value or throw exception if
059     * value cannot be stored in the Float.
060     *
061     * @param value   The input object to be converted
062     * @param pattern The pattern is used for the conversion
063     * @return The converted value
064     * @throws ConversionException if conversion cannot be performed successfully
065     * @throws ParseException      if an error occurs parsing a String to a Number
066     */
067    @Override
068    protected Float parse(final Object value, final String pattern) throws ParseException {
069        final Number parsed = super.parse(value, pattern);
070        final double doubleValue = parsed.doubleValue();
071        final double posDouble = doubleValue >= 0 ? doubleValue : doubleValue * -1;
072        if (posDouble != 0 && (posDouble < Float.MIN_VALUE || posDouble > Float.MAX_VALUE)) {
073            throw new ConversionException("Supplied number is not of type Float: " + parsed);
074        }
075        return Float.valueOf(parsed.floatValue()); // unlike superclass it returns Float type
076    }
077}