702703704705706707708
/** * A convenience shortcut for building NOT_LIKE_IGNORE_CASE expression. */ public static Expression notLikeIgnoreCaseExp(String pathSpec, Object value) { return new ASTNotLikeIgnoreCase(new ASTObjPath(pathSpec), value); }
716717718719720721722
* escape character.</p> * * @since 3.0.1 */ public static Expression notLikeIgnoreCaseExp(String pathSpec, Object value, char escapeChar) { return new ASTNotLikeIgnoreCase(new ASTObjPath(pathSpec), value, escapeChar); }
725726727728729730731
* A convenience shortcut for building NOT_LIKE_IGNORE_CASE expression. * * @since 3.0 */ public static Expression notLikeIgnoreCaseDbExp(String pathSpec, Object value) { return new ASTNotLikeIgnoreCase(new ASTDbPath(pathSpec), value); }
739740741742743744745
* escape character.</p> * * @since 3.0.1 */ public static Expression notLikeIgnoreCaseDbExp(String pathSpec, Object value, char escapeChar) { return new ASTNotLikeIgnoreCase(new ASTDbPath(pathSpec), value, escapeChar); }
618619620621622623624
627628629630631632633