Coverage Report - org.jaudiotagger.audio.SupportedFileFormat
 
Classes in this File Line Coverage Branch Coverage Complexity
SupportedFileFormat
100%
15/15
N/A
0
 
 1  
 package org.jaudiotagger.audio;
 2  
 
 3  
 /**
 4  
  * Files formats currently supported by Library
 5  
  */
 6  54
 public enum SupportedFileFormat
 7  
 {
 8  43
     OGG("ogg"),
 9  43
     MP3("mp3"),
 10  43
     FLAC("flac"),
 11  43
     MP4("mp4"),
 12  43
     M4A("m4a"),
 13  43
     M4P("m4p"),
 14  43
     WMA("wma"),
 15  43
     WAV("wav"),
 16  43
     RA("ra"),
 17  43
     RM("rm");
 18  
 
 19  
     private String filesuffix;
 20  
 
 21  
     SupportedFileFormat(String filesuffix)
 22  430
     {
 23  430
         this.filesuffix = filesuffix;
 24  430
     }
 25  
 
 26  
     public String getFilesuffix()
 27  
     {
 28  756
         return filesuffix;
 29  
     }
 30  
 }