368369370371372373374
/** * 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); }
382383384385386387388
/** * 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); }