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

cn.chenhuanming.octopus.formatter.IntegerFormatter 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 IntegerFormatter extends AbstractFormatter {

    @Override
    public String format(Integer integer) {
        return String.valueOf(integer);
    }


    @Override
    public Integer parseImpl(String str) throws Exception {
        return Integer.valueOf(str);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy