the propertyName to check
the pattern to match
Optional
wildCard: stringthe wildCard in the pattern (represents 0 or more characters)
Optional
singleChar: stringOptional
escapeChar: stringthe escapeChar character. Any character after this is evaluated as a literal.
Optional
matchCase: booleanindicates whether the "is like" operator is case sensitive or not.
The default value is true
The "is like" expression.
Creates an "is like" expression which evaluates to
true
when the value ofexpression
matches the specified pattern. It is possible to not specify thewildCard
,singleChar
andescapeChar
arguments. In that case the OGC default values will be used (wildCard: '*', single char: '.' and escapeChar character: '!').