cn.sylinx.hbatis.ext.ifblock.IfEndMatcher 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.ifblock;
public interface IfEndMatcher {
/**
* 截取#IF[XX] xxxxx #END 对
* @param partStatement 类似 #IF[XX] xxxxx #END .... other str
* @return
*/
String findMatchIfEnd(String partStatement);
}