586587588589590591592
/** * A convenience shortcut for building NOT_LIKE expression. */ public static Expression notLikeExp(String pathSpec, Object value) { return new ASTNotLike(new ASTObjPath(pathSpec), value); }
595596597598599600601
* 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); }
585586587588589590591
594595596597598599600
493494495496497498499
502503504505506507508
390391392393394395396
508509510511512513514
517518519520521522523
631632633634635636637