Skip to content

Commit fa2badd

Browse files
committed
fix comment
1 parent 59b62b1 commit fa2badd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ public enum Operator
6363
DOES_NOT_START_WITH("Does Not Start With", "doesnotstartwith", "DOES_NOT_START_WITH", true),
6464

6565
CONTAINS("Contains", "contains", "CONTAINS", true),
66-
CONTAINS_ALL("Contains All", "containsall", "CONTAINS_ALL", true),
67-
CONTAINS_ANY("Contains Any", "containsany", "CONTAINS_ANY", true),
68-
CONTAINS_EXACTLY("Contains Exactly", "containsexactly", "CONTAINS_EXACTLY", true),
69-
CONTAINS_NONE("Contains None", "containsnone", "CONTAINS_NONE", true),
70-
DOES_NOT_CONTAIN("Does Not Contain", "doesnotcontain", "DOES_NOT_CONTAIN", true),
71-
DOES_NOT_CONTAIN_EXACTLY("Does Not Contain Exactly", "doesnotcontainexactly", "DOES_NOT_CONTAIN_EXACTLY", true),
66+
CONTAINS_ALL("Contains All", "arraycontainsall", "ARRAYCONTAINSALL", true),
67+
CONTAINS_ANY("Contains Any", "arraycontainsany", "ARRAYCONTAINSANY", true),
68+
CONTAINS_EXACTLY("Contains Exactly", "arraymatches", "ARRAYMATCHES", true),
69+
CONTAINS_NONE("Contains None", "arraycontainsnone", "ARRAYCONTAINSNONE", true),
70+
DOES_NOT_CONTAIN("Does Not Contain", "arraydoesnotcontain", "ARRAYDOESNOTCONTAIN", true),
71+
DOES_NOT_CONTAIN_EXACTLY("Does Not Contain Exactly", "arraynotmatches", "ARRAYNOTMATCHES", true),
7272

7373
IS_EMPTY("Is Empty", "isempty", "IS_EMPTY", false),
7474
IS_NOT_EMPTY("Is Not Empty", "isnotempty", "IS_NOT_EMPTY", false),

0 commit comments

Comments
 (0)