@@ -829,7 +829,7 @@ protected Collection getCollectionParam(Object value)
829829 */
830830
831831
832- public static final CompareType ARRAY_IS_EMPTY = new CompareType ("Is Empty" , "arrayisempty" , "ARRAYISEMPTY " , false , null , OperatorType .ARRAYISEMPTY )
832+ public static final CompareType ARRAY_IS_EMPTY = new CompareType ("Is Empty" , "arrayisempty" , "ARRAY_ISEMPTY " , false , null , OperatorType .ARRAYISEMPTY )
833833 {
834834 @ Override
835835 public ArrayIsEmptyClause createFilterClause (@ NotNull FieldKey fieldKey , Object value )
@@ -844,7 +844,7 @@ public boolean meetsCriteria(ColumnRenderProperties col, Object value, Object[]
844844 }
845845 };
846846
847- public static final CompareType ARRAY_IS_NOT_EMPTY = new CompareType ("Is Not Empty" , "arrayisnotempty" , "ARRAYISNOTEMPTY " , false , null , OperatorType .ARRAYISNOTEMPTY )
847+ public static final CompareType ARRAY_IS_NOT_EMPTY = new CompareType ("Is Not Empty" , "arrayisnotempty" , "ARRAY_ISNOTEMPTY " , false , null , OperatorType .ARRAYISNOTEMPTY )
848848 {
849849 @ Override
850850 public ArrayIsEmptyClause createFilterClause (@ NotNull FieldKey fieldKey , Object value )
@@ -859,7 +859,7 @@ public boolean meetsCriteria(ColumnRenderProperties col, Object value, Object[]
859859 }
860860 };
861861
862- public static final CompareType ARRAY_CONTAINS_ALL = new CompareType ("Contains All" , "arraycontainsall" , "ARRAYCONTAINSALL " , true , null , OperatorType .ARRAYCONTAINSALL )
862+ public static final CompareType ARRAY_CONTAINS_ALL = new CompareType ("Contains All" , "arraycontainsall" , "ARRAY_CONTAINS_ALL " , true , null , OperatorType .ARRAYCONTAINSALL )
863863 {
864864 @ Override
865865 public ArrayContainsAllClause createFilterClause (@ NotNull FieldKey fieldKey , Object value )
@@ -880,7 +880,7 @@ public String getValueSeparator()
880880 }
881881 };
882882
883- public static final CompareType ARRAY_CONTAINS_ANY = new CompareType ("Contains Any" , "arraycontainsany" , "ARRAYCONTAINSANY " , true , null , OperatorType .ARRAYCONTAINSANY )
883+ public static final CompareType ARRAY_CONTAINS_ANY = new CompareType ("Contains Any" , "arraycontainsany" , "ARRAY_CONTAINS_ANY " , true , null , OperatorType .ARRAYCONTAINSANY )
884884 {
885885 @ Override
886886 public ArrayContainsAnyClause createFilterClause (@ NotNull FieldKey fieldKey , Object value )
@@ -901,7 +901,7 @@ public String getValueSeparator()
901901 }
902902 };
903903
904- public static final CompareType ARRAY_CONTAINS_NONE = new CompareType ("Contains None" , "arraycontainsnone" , "ARRAYCONTAINSNONE " , true , null , OperatorType .ARRAYCONTAINSNONE )
904+ public static final CompareType ARRAY_CONTAINS_NONE = new CompareType ("Contains None" , "arraycontainsnone" , "ARRAY_CONTAINS_NONE " , true , null , OperatorType .ARRAYCONTAINSNONE )
905905 {
906906 @ Override
907907 public ArrayContainsNoneClause createFilterClause (@ NotNull FieldKey fieldKey , Object value )
@@ -922,7 +922,7 @@ public String getValueSeparator()
922922 }
923923 };
924924
925- public static final CompareType ARRAY_MATCHES = new CompareType ("Contains Exactly" , "arraymatches" , "ARRAYMATCHES " , true , null , OperatorType .ARRAYMATCHES )
925+ public static final CompareType ARRAY_MATCHES = new CompareType ("Contains Exactly" , "arraymatches" , "ARRAY_CONTAINS_EXACT " , true , null , OperatorType .ARRAYMATCHES )
926926 {
927927 @ Override
928928 public ArrayMatchesClause createFilterClause (@ NotNull FieldKey fieldKey , Object value )
@@ -943,7 +943,7 @@ public String getValueSeparator()
943943 }
944944 };
945945
946- public static final CompareType ARRAY_NOT_MATCHES = new CompareType ("Does Not Contain Exactly" , "arraynotmatches" , "ARRAYNOTMATCHES " , true , null , OperatorType .ARRAYNOTMATCHES )
946+ public static final CompareType ARRAY_NOT_MATCHES = new CompareType ("Does Not Contain Exactly" , "arraynotmatches" , "ARRAY_CONTAINS_NOT_EXACT " , true , null , OperatorType .ARRAYNOTMATCHES )
947947 {
948948 @ Override
949949 public ArrayNotMatchesClause createFilterClause (@ NotNull FieldKey fieldKey , Object value )
0 commit comments