All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.milyn.javabean.decoders.DoubleDecoder Maven / Gradle / Ivy

There is a newer version: 1.7.1
Show newest version
package org.milyn.javabean.decoders;

import org.milyn.javabean.DataDecoder;
import org.milyn.javabean.DataDecodeException;
import org.milyn.javabean.DecodeType;

import java.math.BigDecimal;
import java.math.BigInteger;
import java.text.NumberFormat;
import java.text.ParseException;

/**
 * Double decoder.
 *
 * @author [email protected]
 */
@DecodeType({Double.class, double.class})
public class DoubleDecoder extends NumberDecoder {

    public Object decode(String data) throws DataDecodeException {
        NumberFormat format = getNumberFormat();

        if(format != null) {
            try {
                Number number = format.parse(data.trim());
                return number.doubleValue();
            } catch (ParseException e) {
                throw new DataDecodeException("Failed to decode Double value '" + data + "' using NumberFormat instance " + format + ".", e);
            }
        } else {
            try {
                return Double.parseDouble(data.trim());
            } catch(NumberFormatException e) {
                throw new DataDecodeException("Failed to decode Double value '" + data + "'.", e);
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy