599600601602603604605
* </p> * * @since 3.0.1 */ public static Expression likeExp(String pathSpec, Object value, char escapeChar) { return new ASTLike(new ASTObjPath(pathSpec), value, escapeChar); }
608609610611612613614
* 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); }
624625626627628629630
* </p> * * @since 3.0.1 */ public static Expression likeDbExp(String pathSpec, Object value, char escapeChar) { return new ASTLike(new ASTDbPath(pathSpec), value, escapeChar); }
570571572573574575576
/** * A convenience shortcut for building LIKE expression. */ public static Expression likeExp(String pathSpec, Object value) { return new ASTLike(new ASTObjPath(pathSpec), value); }
584585586587588589590
* escape character.</p> * * @since 3.0.1 */ public static Expression likeExp(String pathSpec, Object value, char escapeChar) { return new ASTLike(new ASTObjPath(pathSpec), value, escapeChar); }
593594595596597598599
607608609610611612613
* escape character.</p> * * @since 3.0.1 */ public static Expression likeDbExp(String pathSpec, Object value, char escapeChar) { return new ASTLike(new ASTDbPath(pathSpec), value,escapeChar); }
579580581582583584585
595596597598599600601
604605606607608609610