cn.sylinx.hbatis.ext.parse.ValueTokenHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
package cn.sylinx.hbatis.ext.parse;
public interface ValueTokenHandler {
/**
* 处理占位符
* @param content 占位符
* @return
*/
Object hand(String content);
}