Coverage Report - org.jaudiotagger.audio.ogg.VorbisVersion
 
Classes in this File Line Coverage Branch Coverage Complexity
VorbisVersion
100%
6/6
N/A
0
 
 1  
 package org.jaudiotagger.audio.ogg;
 2  
 
 3  
 /**
 4  
  * Vorbis Version
 5  
  * <p/>
 6  
  * Ordinal is used to map from internal representation
 7  
  */
 8  49
 public enum VorbisVersion
 9  
 {
 10  6
     VERSION_ONE("Ogg Vorbis v1");
 11  
 
 12  
     //The display name for this version
 13  
     private String displayName;
 14  
 
 15  
 
 16  
     VorbisVersion(String displayName)
 17  6
     {
 18  6
         this.displayName = displayName;
 19  6
     }
 20  
 
 21  
     public String toString()
 22  
     {
 23  43
         return displayName;
 24  
     }
 25  
 }