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

cn.sylinx.hbatis.ext.function.IFunction Maven / Gradle / Ivy

There is a newer version: 2.0.0.RELEASE
Show newest version
package cn.sylinx.hbatis.ext.function;

import cn.sylinx.hbatis.ext.parse.ValueTokenHandler;

/**
 * SQL函数处理
 * 
 * @author han
 *
 */
public interface IFunction {

	/**
	 * sql使用名称
	 * 
	 * @return
	 */
	String sqlAlias();

	/**
	 * 执行调用
	 * @param valueTokenHandler
	 * @param input
	 * @return
	 */
	String invoke(ValueTokenHandler valueTokenHandler, String input);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy