303304305306307308309
/** * A convenience method to create an OBJ_PATH "less than or equal to" expression. */ public static Expression lessOrEqualExp(String pathSpec, Object value) { return new ASTLessOrEqual(new ASTObjPath(pathSpec), value); }
312313314315316317318
* A convenience method to create an DB_PATH "less than or equal to" expression. * * @since 3.0 */ public static Expression lessOrEqualDbExp(String pathSpec, Object value) { return new ASTLessOrEqual(new ASTDbPath(pathSpec), value); }
318319320321322323324
317318319320321322323
326327328329330331332
409410411412413414415
418419420421422423424
396397398399400401402
405406407408409410411