Skip to content
Closed
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/org/labkey/remoteapi/query/Filter.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,15 @@ public enum Operator
DOES_NOT_START_WITH("Does Not Start With", "doesnotstartwith", "DOES_NOT_START_WITH", true),

CONTAINS("Contains", "contains", "CONTAINS", true),
CONTAINS_ALL("Contains All", "containsall", "CONTAINS_ALL", true),
CONTAINS_ANY("Contains Any", "containsany", "CONTAINS_ANY", true),
CONTAINS_EXACTLY("Contains Exactly", "containsexactly", "CONTAINS_EXACTLY", true),
CONTAINS_NONE("Contains None", "containsnone", "CONTAINS_NONE", true),
DOES_NOT_CONTAIN("Does Not Contain", "doesnotcontain", "DOES_NOT_CONTAIN", true),
DOES_NOT_CONTAIN_EXACTLY("Does Not Contain Exactly", "doesnotcontainexactly", "DOES_NOT_CONTAIN_EXACTLY", true),

IS_EMPTY("Is Empty", "isempty", "IS_EMPTY", true),
IS_NOT_EMPTY("Is Not Empty", "isnotempty", "IS_NOT_EMPTY", true),
Comment thread
DariaBod marked this conversation as resolved.
Outdated

CONTAINS_ONE_OF("Contains One Of (example usage: a;b;c)", "containsoneof", "CONTAINS_ONE_OF", true),
CONTAINS_NONE_OF("Does Not Contain Any Of (example usage: a;b;c)", "containsnoneof", "CONTAINS_NONE_OF", true),
Expand Down