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

net.sf.andromedaioc.bean.converter.fromstring.FromStringToByteConverter Maven / Gradle / Ivy

The newest version!
package net.sf.andromedaioc.bean.converter.fromstring;

import net.sf.andromedaioc.bean.converter.Converter;

/**
 * From String to Byte converter
 *
 * @author Alexey Mitrov
 */
public class FromStringToByteConverter implements Converter {

    public Byte convert(String input) {
        return input == null ? null : Byte.parseByte(input);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy