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

ru.qatools.properties.converters.ShortConverter Maven / Gradle / Ivy

There is a newer version: 2.0.RC6
Show newest version
package ru.qatools.properties.converters;

/**
 * @author Dmitry Baev [email protected]
 *         Date: 08.05.15
 */
public class ShortConverter implements Converter {

    @Override
    public Short convert(String from) throws Exception {
        return Short.parseShort(from.trim());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy