Matches the entire input against the pattern (anchored start and end). If there is a match, matches sets the match state to describe it. @return true if the entire input matches the pattern
()
| 316 | * @return true if the entire input matches the pattern |
| 317 | */ |
| 318 | public boolean matches() { |
| 319 | return genMatch(0, RE2.ANCHOR_BOTH); |
| 320 | } |
| 321 | |
| 322 | /** |
| 323 | * Matches the beginning of input against the pattern (anchored start). If there is a match, |