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

top.cutexingluo.tools.basepackage.function.Parser Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
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