com.carrotsearch.console.jcommander.IStringConverterFactory Maven / Gradle / Ivy
The newest version!
/*
* console-tools
*
* Copyright (C) 2019, Carrot Search s.c.
* All rights reserved.
*/
package com.carrotsearch.console.jcommander;
/**
* A factory for IStringConverter. This interface lets you specify your converters in one place
* instead of having them repeated all over your argument classes.
*
* @author cbeust
*/
public interface IStringConverterFactory {
Class extends IStringConverter> getConverter(Class forType);
}