602603604605606607608
/** * A convenience shortcut for building LIKE_IGNORE_CASE expression. */ public static Expression likeIgnoreCaseExp(String pathSpec, Object value) { return new ASTLikeIgnoreCase(new ASTObjPath(pathSpec), value); }
611612613614615616617
* 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); }
601602603604605606607
610611612613614615616
509510511512513514515
518519520521522523524
397398399400401402403
524525526527528529530
533534535536537538539
679680681682683684685