io.github.wycst.wast.common.expression.ExprFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wast Show documentation
Show all versions of wast Show documentation
Wast is a high-performance Java toolset library package that includes JSON, YAML, CSV, HttpClient, JDBC and EL engines
package io.github.wycst.wast.common.expression;
/**
* 提供给使用者注册在表达式中可以通过@调用
*
* @Author: wangy
* @Date: 2021/11/20 14:07
* @Description:
*/
public interface ExprFunction {
/***
* 函数接口
*
* @param params
* @return
*/
public O call(I...params);
}