package com.ziesemer.utils.classParser;
/**
* @author Mark A. Ziesemer
* <a href="http://www.ziesemer.com"><www.ziesemer.com></a>
*/
public interface IClassParser{
Object NO_RESULT = new NoResult();
/**
* @param str Implementation-dependent, but for many class types, must be not null and length > 0.
*/
Object convert(Class<?> c, String str) throws Exception;
}