266267268269270271272
/** * A convenience method to create an DB_PATH "not equal to" expression. */ public static Expression noMatchDbExp(String pathSpec, Object value) { return new ASTNotEqual(new ASTDbPath(pathSpec), value); }
280281282283284285286
/** * A convenience method to create an OBJ_PATH "not equal to" expression. */ public static Expression noMatchExp(String pathSpec, Object value) { return new ASTNotEqual(new ASTObjPath(pathSpec), value); }
276277278279280281282
304305306307308309310
294295296297298299300
372373374375376377378
386387388389390391392
359360361362363364365
373374375376377378379