linear.stringcomparator
Home > @runlightyear/linear > StringComparator
StringComparator interface
Signature:interface StringComparator
Optional Properties
Property | Modifiers | Type | Description |
---|---|---|---|
contains? | string | Contains constraint. Matches any values that contain the given string. | |
containsIgnoreCase? | string | Contains case insensitive constraint. Matches any values that contain the given string case insensitive. | |
endsWith? | string | Ends with constraint. Matches any values that end with the given string. | |
eq? | string | Equals constraint. | |
eqIgnoreCase? | string | Equals case insensitive. Matches any values that matches the given string case insensitive. | |
in? | Array<string> | In-array constraint. | |
neq? | string | Not-equals constraint. | |
neqIgnoreCase? | string | Not-equals case insensitive. Matches any values that don't match the given string case insensitive. | |
nin? | Array<string> | Not-in-array constraint. | |
notContains? | string | Doesn't contain constraint. Matches any values that don't contain the given string. | |
notContainsIgnoreCase? | string | Doesn't contain case insensitive constraint. Matches any values that don't contain the given string case insensitive. | |
notEndsWith? | string | Doesn't end with constraint. Matches any values that don't end with the given string. | |
notStartsWith? | string | Doesn't start with constraint. Matches any values that don't start with the given string. | |
startsWith? | string | Starts with constraint. Matches any values that start with the given string. |