752753754755756757758
*/ public static Expression notLikeIgnoreCaseExp( String pathSpec, Object value, char escapeChar) { return new ASTNotLikeIgnoreCase(new ASTObjPath(pathSpec), value, escapeChar); }
761762763764765766767
* 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); }
780781782783784785786
*/ public static Expression notLikeIgnoreCaseDbExp( String pathSpec, Object value, char escapeChar) { return new ASTNotLikeIgnoreCase(new ASTDbPath(pathSpec), value, escapeChar); }
703704705706707708709
/** * 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); }
717718719720721722723
* 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); }
726727728729730731732
740741742743744745746
* 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); }
729730731732733734735
748749750751752753754
757758759760761762763