Interface FileParser


  • public interface FileParser
    An FileParser is an object that can parse any file and return an Set of DBEntry associate to the file (it enables the user to defines specific parsing methods)
    • Method Summary

      Modifier and Type Method Description
      java.util.Optional<CheckSum> computeChecksum​(java.lang.String file)  
      java.util.Set<DBEntry> read​(java.lang.String file)  
    • Method Detail

      • read

        java.util.Set<DBEntry> read​(java.lang.String file)
      • computeChecksum

        java.util.Optional<CheckSum> computeChecksum​(java.lang.String file)