570571572573574575576
/** * A convenience shortcut for building LIKE expression. */ public static Expression likeExp(String pathSpec, Object value) { return new ASTLike(new ASTObjPath(pathSpec), value); }
579580581582583584585
* A convenience shortcut for building LIKE DB_PATH expression. * * @since 3.0 */ public static Expression likeDbExp(String pathSpec, Object value) { return new ASTLike(new ASTDbPath(pathSpec), value); }
569570571572573574575
578579580581582583584
477478479480481482483
486487488489490491492
383384385386387388389
492493494495496497498
501502503504505506507
583584585586587588589