412413414415416417418
/** * A convenience method to create an OBJ_PATH "greater than" expression. */ public static Expression greaterExp(String pathSpec, Object value) { return new ASTGreater(new ASTObjPath(pathSpec), value); }
421422423424425426427
* A convenience method to create an DB_PATH "greater than" expression. * * @since 3.0 */ public static Expression greaterDbExp(String pathSpec, Object value) { return new ASTGreater(new ASTDbPath(pathSpec), value); }
411412413414415416417
420421422423424425426