Tests if the file suffix matches the specified suffixes. @param suffixes suffixes to compare with @return result of check
(final String... suffixes)
| 186 | * @return result of check |
| 187 | */ |
| 188 | public final boolean hasSuffix(final String... suffixes) { |
| 189 | return checkSuffix(pth, suffixes); |
| 190 | } |
| 191 | |
| 192 | /** |
| 193 | * Returns the time stamp (modification date) of this file. |
no test coverage detected