614615616617618619620
/** * A convenience shortcut for building NOT_LIKE expression. */ public static Expression notLikeExp(String pathSpec, Object value) { return new ASTNotLike(new ASTObjPath(pathSpec), value); }
628629630631632633634
* escape character.</p> * * @since 3.0.1 */ public static Expression notLikeExp(String pathSpec, Object value, char escapeChar) { return new ASTNotLike(new ASTObjPath(pathSpec), value, escapeChar); }
637638639640641642643
* A convenience shortcut for building NOT_LIKE expression. * * @since 3.0 */ public static Expression notLikeDbExp(String pathSpec, Object value) { return new ASTNotLike(new ASTDbPath(pathSpec), value); }
651652653654655656657
* escape character.</p> * * @since 3.0.1 */ public static Expression notLikeDbExp(String pathSpec, Object value, char escapeChar) { return new ASTNotLike(new ASTDbPath(pathSpec), value, escapeChar); }
586587588589590591592
595596597598599600601