top.cutexingluo.tools.basepackage.function.Parser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xingtools-core Show documentation
Show all versions of xingtools-core Show documentation
xingtools 核心,包括各种接口,实体类和工具类
package top.cutexingluo.tools.basepackage.function;
/**
* one object to other object
*
* @author XingTian
* @version 1.0.0
* @date 2024/7/25 14:19
* @since 1.1.2
*/
public interface Parser {
/**
* parse source to target
*
* @param source source
* @return target
*/
T parse(S source) throws Exception;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy