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

db.sql.api.cmd.struct.IWhereIgnoreMethod Maven / Gradle / Ivy

There is a newer version: 1.7.6-RC2
Show newest version
package db.sql.api.cmd.struct;

public interface IWhereIgnoreMethod {
    /**
     * 构建条件时忽略null值
     *
     * @param bool 是否忽略
     * @return 当前类
     */
    SELF ignoreNullValueInCondition(boolean bool);

    /**
     * 构建条件时忽略空字符串
     *
     * @param bool 是否忽略
     * @return 当前类
     */
    SELF ignoreEmptyInCondition(boolean bool);

    /**
     * 构建条件时,是否对字符串进行trim
     *
     * @param bool 是否进行trim
     * @return 当前类
     */
    SELF trimStringInCondition(boolean bool);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy