1 /**2 * 3 */4 package jfun.yan.util.deserializer;5 6 /**7 * This interface is responsible for converting string8 * to a target type.9 * <p>10 * @author Ben Yu11 * Feb 1, 2006 12:30:07 AM12 */13 public interface Deserializer {14 public Object deserialize(String str)15 throws Throwable ;16 }