Class FileID


  • public class FileID
    extends java.lang.Object
    Simple, yet surprisingly common utility methods for identifying various file types commonly seen and worked with in a deployment scenario.
    • Constructor Summary

      Constructors 
      Constructor Description
      FileID()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static boolean isWebArchive​(java.io.File path)
      Is the path a Web Archive?
      static boolean isWebArchiveFile​(java.io.File path)
      Is the path a Web Archive File (not directory)
      static boolean isXmlFile​(java.io.File path)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FileID

        public FileID()
    • Method Detail

      • isWebArchive

        public static boolean isWebArchive​(java.io.File path)
        Is the path a Web Archive?
        Parameters:
        path - the path to test.
        Returns:
        True if a .war or .jar or exploded web directory
        See Also:
        isWebArchiveFile(File)
      • isWebArchiveFile

        public static boolean isWebArchiveFile​(java.io.File path)
        Is the path a Web Archive File (not directory)
        Parameters:
        path - the path to test.
        Returns:
        True if a .war or .jar file.
        See Also:
        isWebArchive(File)
      • isXmlFile

        public static boolean isXmlFile​(java.io.File path)