@param key Expected pattern. @param text Text to test for a match. @return true if the given text matches with the given key.
(String key, String text)
| 56 | * @return {@code true} if the given text matches with the given key. |
| 57 | */ |
| 58 | public boolean match(String key, String text) { |
| 59 | return matcher.test(key, text); |
| 60 | } |
| 61 | } |