399400401402403404405
*/ public static Expression notInExp(String pathSpec, Collection<?> values) { if (values.isEmpty()) { return new ASTTrue(); } return new ASTNotIn(new ASTObjPath(pathSpec), new ASTList(values)); }
412413414415416417418
*/ public static Expression notInDbExp(String pathSpec, Collection<?> values) { if (values.isEmpty()) { return new ASTTrue(); } return new ASTNotIn(new ASTDbPath(pathSpec), new ASTList(values)); }
425426427428429430431
*/ public static Expression notInExp(String pathSpec, Object... values) { if (values.length == 0) { return new ASTTrue(); } return new ASTNotIn(new ASTObjPath(pathSpec), new ASTList(values)); }
438439440441442443444
*/ public static Expression notInDbExp(String pathSpec, Object... values) { if (values.length == 0) { return new ASTTrue(); } return new ASTNotIn(new ASTDbPath(pathSpec), new ASTList(values)); }
353354355356357358359
/** * A convenience shortcut for building NOT_IN expression. */ public static Expression notInExp(String pathSpec, Collection values) { return new ASTNotIn(new ASTObjPath(pathSpec), new ASTList(values)); }
362363364365366367368
* A convenience shortcut for building NOT_IN expression. * * @since 1.0.6 */ public static Expression notInExp(String pathSpec, Object[] values) { return new ASTNotIn(new ASTObjPath(pathSpec), new ASTList(values)); }
413414415416417418419
*/ public static Expression notInExp(String pathSpec, Collection values) { if (values.isEmpty()) { return new ASTTrue(); } return new ASTNotIn(new ASTObjPath(pathSpec), new ASTList(values)); }
426427428429430431432
*/ public static Expression notInDbExp(String pathSpec, Collection values) { if (values.isEmpty()) { return new ASTTrue(); } return new ASTNotIn(new ASTDbPath(pathSpec), new ASTList(values)); }
440441442443444445446
*/ public static Expression notInExp(String pathSpec, Object[] values) { if (values.length == 0) { return new ASTTrue(); } return new ASTNotIn(new ASTObjPath(pathSpec), new ASTList(values)); }
453454455456457458459
*/ public static Expression notInDbExp(String pathSpec, Object[] values) { if (values.length == 0) { return new ASTTrue(); } return new ASTNotIn(new ASTDbPath(pathSpec), new ASTList(values)); }