Skip to main content

StringFilterOperation

contains(target: String): StringFilterOperation

Check if a value is contains the target.


eq(target: String): StringFilterOperation

Check if a value is equal to the target.


in(target: String[]): StringFilterOperation

Check if a value is one of the ones in the target array.


not_contains(target: String): StringFilterOperation

Check if a value is does not contain the target.


not_eq(target: String): StringFilterOperation

Check if a value is not equal to the target.


not_in(target: String[]): StringFilterOperation

Check if a value is none of the ones in the target array.