359360361362363364365
/** * 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); }
373374375376377378379
/** * 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); }
358359360361362363364
372373374375376377378