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

com.greenpepper.util.cli.FileConverter Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
package com.greenpepper.util.cli;

import java.io.File;

/**
 * 

FileConverter class.

* * @author oaouattara * @version $Id: $Id */ public class FileConverter implements Converter { /** {@inheritDoc} */ public Object convert( String value ) throws Exception { return new File( value ); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy