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

org.picocontainer.converters.IntegerConverter 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 'int' data type objects
 * 
 * @author Paul Hammant
 * @author Michael Rimov
 */
class IntegerConverter implements Converter {

    public Integer convert(String paramValue) {
        return Integer.valueOf(paramValue);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy