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

org.srplib.conversion.StringToDoubleConverter Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package org.srplib.conversion;

/**
 * @author Anton Pechinsky
 */
public class StringToDoubleConverter implements Converter {

    public Double convert(String input) {
        try {
            return Double.valueOf(input);
        }
        catch (NumberFormatException e) {
            throw new ConverterException(String.format("Can't convert '%s' to Double.", input), e);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy