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

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

The newest version!
package ru.qatools.properties.converters;

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

    @Override
    public Byte convert(String from) throws Exception {
        return Byte.parseByte(from);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy