cn.sylinx.hbatis.ext.ifblock.IfEndBlockParser 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
The newest version!
package cn.sylinx.hbatis.ext.ifblock;
public interface IfEndBlockParser {
/**
*
* @param statement
* 入参类似 "#IF[condition != null] and field = ${condition} #ELSE
* and field = 1 #END" 的字符串
* @return
*/
String parse(String statement);
}