@@ -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