com.ql.util.express.IExpressResourceLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of QLExpress Show documentation
Show all versions of QLExpress Show documentation
QLExpress is a powerful, lightweight, dynamic language for the Java platform aimed at improving developers’ productivity in different business scenes.
The newest version!
package com.ql.util.express;
/**
* 加载表达式资源接口
*
* @author xuannan
*/
public interface IExpressResourceLoader {
/**
* 根据表达式名称获取表达式的内容
*
* @param expressName
* @return
* @throws Exception
*/
String loadExpress(String expressName) throws Exception;
}