org.srplib.conversion.StringToDoubleConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of srp-conversion-support Show documentation
Show all versions of srp-conversion-support Show documentation
Single Responsibility Principle (SRP) libraries collection
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