(String input)
| 187 | Pattern.compile(fsSchemes + " partitions=\\d+/\\d+ files=\\d+ size="); |
| 188 | |
| 189 | @Override |
| 190 | public boolean matches(String input) { |
| 191 | return scanNodeInputMetadata.matcher(input).find() |
| 192 | || scanNodeFsScheme.matcher(input).find(); |
| 193 | } |
| 194 | |
| 195 | @Override |
| 196 | public String transform(String input) { |