Map classes to their valid `FileFormat` enum types
mferrera opened this issue · 0 comments
mferrera commented
Validating file types is quite ad-hoc for importing and exporting at the moment. Imports have generally been moved to check again the new FileFormat
enum
Lines 48 to 51 in 33652a2
but exports have not yet so far, for practical reasons. We should map the class types to the keys of this enum where appropriate to unify file format checking for import and export. This presumes that import file types and export file types are the same, which may not be the case -- in which case they can be grouped into import and export types, respectively.
This mapping might exist inside or outside of the class itself.