FileDocCategorySizeDatePackage
ID3V2ExtendedGenreTypes.javaAPI DocJaudiotagger 2.0.4519Wed Mar 30 16:12:04 BST 2011org.jaudiotagger.tag.id3.valuepair

ID3V2ExtendedGenreTypes.java

package org.jaudiotagger.tag.id3.valuepair;

/**
 * ID3V2 Genre list
 * <p/>
 * <p>These are additional genres added in the V2 Specification, they have a string key (RX,CV) rather than a
 * numeric key</p>
 */
public enum ID3V2ExtendedGenreTypes
{
    RX("Remix"),
    CR("Cover");

    private String description;

    ID3V2ExtendedGenreTypes(String description)
    {
        this.description = description;
    }

    public String getDescription()
    {
        return description;
    }
}