618619620621622623624
/** * 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); }
627628629630631632633
* 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); }
617618619620621622623
626627628629630631632
525526527528529530531
534535536537538539540
404405406407408409410
540541542543544545546
549550551552553554555
733734735736737738739