380381382383384385386
/** * A convenience method to create an OBJ_PATH "less than" expression. */ public static Expression lessExp(String pathSpec, Object value) { return new ASTLess(new ASTObjPath(pathSpec), value); }
389390391392393394395
* A convenience method to create an DB_PATH "less than" expression. * * @since 3.0 */ public static Expression lessDbExp(String pathSpec, Object value) { return new ASTLess(new ASTDbPath(pathSpec), value); }
379380381382383384385
388389390391392393394