public interface StringArgument extends Argument<String>
| Modifier and Type | Method and Description |
|---|---|
Expression |
like(String pattern) |
Expression |
like(String pattern,
char escape) |
Expression like(String pattern)
pattern - the like value pattern to match. Use percent (%) to match any substring (including empty string) and
underscore (_) to match any single character.escape - the escape character.Expression for this == true.Expression like(String pattern, char escape)
pattern - the like value pattern to match. Use percent (%) to match any substring (including empty string) and
underscore (_) to match any single character.escape - the escape character to escape % and _ (e.g. the backslash '\\').Expression for this == true.Copyright © 2001–2016 mmm-Team. All rights reserved.