I don't understand the entity "FilesUploadEnum".
If it is the name of a given file, why not replace the input parameter with:
"@RequestParam("file") List<MultipartFile> files"
and get the file names directly from the object like this:
files.forEach(f-> System.out.println(f.getOriginalFilename()));