Coverage Report - org.jaudiotagger.tag.vorbiscomment.VorbisCommentFieldKey
 
Classes in this File Line Coverage Branch Coverage Complexity
VorbisCommentFieldKey
100%
51/51
N/A
0
 
 1  
 package org.jaudiotagger.tag.vorbiscomment;
 2  
 
 3  
 /**
 4  
  * Common Vorbis Comment Field Names
 5  
  * <p/>
 6  
  * <p>Note:The enumname is also the the actual name of the field in the VorbisCommentTag, but you could introduce a level
 7  
  * of indirection here if required.
 8  
  * <p/>
 9  
  * <p/>
 10  
  * This partial list is derived fom the following sources:
 11  
  * <ul>
 12  
  * <li>http://xiph.org/vorbis/doc/v-comment.html</li>
 13  
  * <li>http://wiki.musicbrainz.org/PicardQt/TagMapping</li>
 14  
  * <li>http://reactor-core.org/ogg-tagging.html</li>
 15  
  * </ul>
 16  
  */
 17  510
 public enum VorbisCommentFieldKey
 18  
 {
 19  10
     ARTIST,
 20  10
     ALBUM,
 21  10
     DESCRIPTION,
 22  10
     GENRE,
 23  10
     TITLE,
 24  10
     TRACKNUMBER,
 25  10
     DATE,
 26  10
     COMMENT,
 27  10
     ALBUMARTIST,
 28  10
     COMPOSER,
 29  10
     GROUPING,
 30  10
     DISCNUMBER,
 31  10
     BPM,
 32  10
     MUSICBRAINZ_ARTISTID,
 33  10
     MUSICBRAINZ_ALBUMID,
 34  10
     MUSICBRAINZ_ALBUMARTISTID,
 35  10
     MUSICBRAINZ_TRACKID,
 36  10
     MUSICBRAINZ_DISCID,
 37  10
     MUSICIP_PUID,
 38  10
     ASIN,
 39  10
     MUSICBRAINZ_ALBUMSTATUS,
 40  10
     MUSICBRAINZ_ALBUMTYPE,
 41  10
     RELEASECOUNTRY,
 42  10
     LYRICS,
 43  10
     COMPILATION,
 44  10
     ARTISTSORT,
 45  10
     ALBUMARTISTSORT,
 46  10
     ALBUMSORT,
 47  10
     TITLESORT,
 48  10
     COMPOSERSORT,
 49  10
     COVERARTMIME,
 50  10
     COVERART,
 51  10
     VENDOR,
 52  10
     ISRC,
 53  10
     BARCODE,
 54  10
     CATALOGNUMBER,
 55  10
     LABEL,
 56  10
     LYRICIST,
 57  10
     CONDUCTOR,
 58  10
     REMIXER,
 59  10
     MOOD,
 60  10
     MEDIA,
 61  10
     URL_OFFICIAL_RELEASE_SITE,
 62  10
     URL_DISCOGS_RELEASE_SITE,
 63  10
     URL_WIKIPEDIA_RELEASE_SITE,
 64  10
     URL_OFFICIAL_ARTIST_SITE,
 65  10
     URL_DISCOGS_ARTIST_SITE,
 66  10
     URL_WIKIPEDIA_ARTIST_SITE,
 67  10
     KEY,
 68  10
     LANGUAGE}