mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-30 21:08:30 +08:00
This commit is contained in:
parent
0c44b0685f
commit
d2f67481a4
@ -119,6 +119,15 @@ public interface Ops {
|
||||
// subquery operations
|
||||
Op<Boolean> EXISTS = new Op<Boolean>(Object.class);
|
||||
|
||||
public static final List<Op<?>> equalsOps = Collections.unmodifiableList(
|
||||
Arrays.<Op<?>>asList(
|
||||
EQ_OBJECT,
|
||||
EQ_PRIMITIVE));
|
||||
|
||||
public static final List<Op<?>> notEqualsOps = Collections.unmodifiableList(
|
||||
Arrays.<Op<?>>asList(
|
||||
NE_OBJECT,
|
||||
NE_PRIMITIVE));
|
||||
|
||||
public static final List<Op<?>> compareOps = Collections.unmodifiableList(
|
||||
Arrays.<Op<?>>asList(
|
||||
|
||||
Loading…
Reference in New Issue
Block a user