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

org.sonarsource.sonarlint.shaded.org.picocontainer.converters.LongConverter Maven / Gradle / Ivy

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

import org.picocontainer.converters.Converter;


/**
 * Converts values to 'long' data type objects
 * 
 * @author Paul Hammant
 * @author Michael Rimov
 */
class LongConverter implements Converter {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy