Interface AbstractHandler

    • Method Detail

      • getSupportedExtension

        String getSupportedExtension()
        Retrieves the supported extension of files, which this AbstractHandler is able to process.
        Returns:
        a String (usually, lower-case) containing the supported extension.
      • extensionsMatch

        static boolean extensionsMatch​(File file,
                                       String extension)
        Checks if the file suffix for file matches the extension.
        Parameters:
        file - the File to process
        extension - a String, which needs to be checked against the suffix of File
        Returns:
        false if file is a directory or if it has a suffix different from extension. True otherwise.