698699700701702703704
*/ public static Expression likeIgnoreCaseExp( String pathSpec, Object value, char escapeChar) { return new ASTLikeIgnoreCase(new ASTObjPath(pathSpec), value, escapeChar); }
707708709710711712713
* A convenience shortcut for building LIKE_IGNORE_CASE expression. * * @since 3.0 */ public static Expression likeIgnoreCaseDbExp(String pathSpec, Object value) { return new ASTLikeIgnoreCase(new ASTDbPath(pathSpec), value); }
726727728729730731732
*/ public static Expression likeIgnoreCaseDbExp( String pathSpec, Object value, char escapeChar) { return new ASTLikeIgnoreCase(new ASTDbPath(pathSpec), value, escapeChar); }
659660661662663664665
/** * A convenience shortcut for building LIKE_IGNORE_CASE expression. */ public static Expression likeIgnoreCaseExp(String pathSpec, Object value) { return new ASTLikeIgnoreCase(new ASTObjPath(pathSpec), value); }
673674675676677678679
* escape character.</p> * * @since 3.0.1 */ public static Expression likeIgnoreCaseExp(String pathSpec, Object value, char escapeChar) { return new ASTLikeIgnoreCase(new ASTObjPath(pathSpec), value, escapeChar); }
682683684685686687688
696697698699700701702
* escape character.</p> * * @since 3.0.1 */ public static Expression likeIgnoreCaseDbExp(String pathSpec, Object value, char escapeChar) { return new ASTLikeIgnoreCase(new ASTDbPath(pathSpec), value, escapeChar); }
675676677678679680681
694695696697698699700
703704705706707708709