Skip to content

Commit 9ce3b67

Browse files
committed
add empty/not empty
1 parent 341bfcf commit 9ce3b67

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/org/labkey/remoteapi/query/Filter.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ public enum Operator
7070
DOES_NOT_CONTAIN("Does Not Contain", "doesnotcontain", "DOES_NOT_CONTAIN", true),
7171
DOES_NOT_CONTAIN_EXACTLY("Does Not Contain Exactly", "doesnotcontainexactly", "DOES_NOT_CONTAIN_EXACTLY", true),
7272

73+
IS_EMPTY("Is Empty", "isempty", "IS_EMPTY", true),
74+
IS_NOT_EMPTY("Is Not Empty", "isnotempty", "IS_NOT_EMPTY", true),
75+
7376
CONTAINS_ONE_OF("Contains One Of (example usage: a;b;c)", "containsoneof", "CONTAINS_ONE_OF", true),
7477
CONTAINS_NONE_OF("Does Not Contain Any Of (example usage: a;b;c)", "containsnoneof", "CONTAINS_NONE_OF", true),
7578

0 commit comments

Comments
 (0)