| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ID3V2ExtendedGenreTypes |
|
| 0.0;0 |
| 1 | package org.jaudiotagger.tag.id3.valuepair; | |
| 2 | ||
| 3 | /** | |
| 4 | * ID3V2 Genre list | |
| 5 | * <p/> | |
| 6 | * <p>These are additional genres added in the V2 Specification, they have a string key (RX,CV) rather than a | |
| 7 | * numeric key</p> | |
| 8 | */ | |
| 9 | 0 | public enum ID3V2ExtendedGenreTypes |
| 10 | { | |
| 11 | 0 | RX("Remix"), |
| 12 | 0 | CV("Cover"); |
| 13 | ||
| 14 | private String description; | |
| 15 | ||
| 16 | ID3V2ExtendedGenreTypes(String description) | |
| 17 | 0 | { |
| 18 | 0 | this.description = description; |
| 19 | 0 | } |
| 20 | ||
| 21 | public String getDescription() | |
| 22 | { | |
| 23 | 0 | return description; |
| 24 | } | |
| 25 | } |