647648649650651652653
* </p> * * @since 3.0.1 */ public static Expression notLikeExp(String pathSpec, Object value, char escapeChar) { return new ASTNotLike(new ASTObjPath(pathSpec), value, escapeChar); }
656657658659660661662
* 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); }
672673674675676677678
* </p> * * @since 3.0.1 */ public static Expression notLikeDbExp(String pathSpec, Object value, char escapeChar) { return new ASTNotLike(new ASTDbPath(pathSpec), value, escapeChar); }
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
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); }
627628629630631632633
643644645646647648649
652653654655656657658