Coverage Report - org.jaudiotagger.audio.mp4.EncoderType
 
Classes in this File Line Coverage Branch Coverage Complexity
EncoderType
100%
8/8
N/A
0
 
 1  
 package org.jaudiotagger.audio.mp4;
 2  
 
 3  
 /**
 4  
  * Encoder Type actually identifies the format of the audio within the mp4. This is because
 5  
  * mp4 container can be used to hold different types of files.
 6  
  */
 7  17
 public enum EncoderType
 8  
 {
 9  17
     AAC("AAC"),
 10  17
     DRM_AAC("DRM AAC"),
 11  17
     APPLE_LOSSLESS("Apple Lossless"),;
 12  
 
 13  
     private String description;
 14  
 
 15  
     EncoderType(String description)
 16  51
     {
 17  51
         this.description = description;
 18  51
     }
 19  
 
 20  
     public String getDescription()
 21  
     {
 22  120
         return description;
 23  
     }
 24  
 }