446447448449450451452
* A convenience method to create an DB_PATH "greater than or equal to" expression. * * @since 3.0 */ public static Expression greaterOrEqualDbExp(String pathSpec, Object value) { return new ASTGreaterOrEqual(new ASTDbPath(pathSpec), value); }