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

org.picocontainer.converters.ByteConverter Maven / Gradle / Ivy

There is a newer version: 2.15
Show newest version
package org.picocontainer.converters;

import org.picocontainer.converters.Converter;

/**
 * Converts values to 'byte' data type objects
 * 
 * @author Paul Hammant
 * @author Michael Rimov
 */
class ByteConverter implements Converter {
    
    public Byte convert(String paramValue) {
        return Byte.valueOf(paramValue);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy