StringMatcher
Specifies the way to match a string.
exact
(string) The input string must match exactly the string specified here.
Examples:
- abc only matches the value abc.
Precisely one of , prefix, , regex must be set.
prefix
Examples:
Precisely one of , prefix, , regex must be set.
suffix
() The input string must have the suffix specified here. Note: empty prefix is not allowed, please use regex instead.
Examples:
- abc matches the value xyz.abc
Precisely one of exact, , suffix, must be set.
(string) The input string must match the regular expression specified here. The regex grammar is defined .
Examples:
- The regex d{3} matches the value 123
- The regex d{3} does not match the value 1234
Precisely one of exact, , suffix, must be set.
type.matcher.ListStringMatcher
Specifies a list of ways to match a string.
patterns