cn.sylinx.hbatis.ext.parse.ConditionTokenHandler 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 ConditionTokenHandler {
/**
* 判断条件
* @param condition 条件
* @return
*/
boolean condition(String condition);
}