Skip to content

Commit

Permalink
Add compression extension
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolife999 committed Sep 27, 2023
1 parent 8745997 commit fdab939
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package fr.insee.arc.utils.files;

public enum CompressionExtension {

TGZ(".tgz"), TAR_GZ(".tar.gz"), ZIP(".zip"), GZ(".gz");

private CompressionExtension(String fileExtension) {
this.fileExtension = fileExtension;
}

private String fileExtension;

public String getFileExtension() {
return fileExtension;
}


}

0 comments on commit fdab939

Please sign in to comment.