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

com.artemis.cli.converter.FolderConverter Maven / Gradle / Ivy

package com.artemis.cli.converter;

import java.io.File;

import com.beust.jcommander.IStringConverter;

public class FolderConverter implements IStringConverter {

	@Override
	public File convert(String value) {
		File folder = new File(value);
		if (!folder.isDirectory())
			throw new RuntimeException(value + " is not a folder.");
		return folder;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy