...
Operator | Description | Applies To |
---|---|---|
== | Equals | All types |
!= | Does not equal | All types |
> | Greater than | All types |
< | Less than | All types |
>= | Greater than or equal to | All types |
<= | Less than or equal to | All types |
@= | Contains | All types |
_= | Starts with | String |
!@= | Does not contain | String |
!_= | Does not starts with | String |
@@@ | Is empty | String |
!@@@ | Not is empty | String |
**@ | Is null | All types |
!**@ | Not is null | All types |
@*@@ | Is null or empty | All types |
!@*@@ | Not is null or empty | All types |
@=* | Case-insensitive contains | String |
_=* | Case-insensitive starts with | String |
==* | Case-insensitive equals | String |
!=* | Case-insensitive does not equal | String |
!@=* | Case-insensitive does not contain | String |
!_=* | Case-insensitive does not start with | String |
...