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

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

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

import org.picocontainer.converters.Converter;

import java.io.File;

/**
 * Converts values to File data type objects
 * 
 * @author Paul Hammant
 * @author Michael Rimov
 */
class FileConverter implements Converter {

    public File convert(String paramValue) {
        return new File(paramValue);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy