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

cn.chenhuanming.octopus.formatter.DoubleFormatter Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
package cn.chenhuanming.octopus.formatter;

/**
 * @author chenhuanming
 * Created at 2019-01-08
 */
public class DoubleFormatter extends AbstractFormatter {
    @Override
    public Double parseImpl(String str) throws Exception {
        return Double.valueOf(str);
    }

    @Override
    public String format(Double aDouble) {
        return String.valueOf(aDouble);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy