287288289290291292293
/** * 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); }
296297298299300301302
* 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); }
311312313314315316317
301302303304305306307
310311312313314315316
393394395396397398399
402403404405406407408
380381382383384385386
389390391392393394395