StringMatch

Represents string conditions in matching expressions.

Extends

Members

(constant) CONTAINS :StringMatch

Represents the string1.indexOf(string2) != -1 condition.

(constant) ENDS_WITH :StringMatch

Represents the string1 ends with characters contained in string2 condition.

(constant) EQUALS :StringMatch

Represents the string1 == string2 condition.

(constant) NOT_EQUALS :StringMatch

Represents the string1 != string2 condition.

(constant) STARTS_WITH :StringMatch

Represents the string1 starts with characters contained in string2 condition.

(readonly) symbol :string

Condition symbol of the matcher.
Type:
  • string

(readonly) type :number

Type identifier of the matcher.
Type:
  • number
Overrides