396397398399400401402
/** * 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); }
405406407408409410411
* 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); }
395396397398399400401
404405406407408409410