id3v2extendedgenretypes.java

来自「YOYOPlayer MP3播放器 java+JMF实现」· Java 代码 · 共 26 行

JAVA
26
字号
package com.hadeslee.audiotag.tag.id3.valuepair;

/**
 * ID3V2 Genre list
 *
 * <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"),
    CV("Cover");

    private String description;

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

    public String getDescription()
    {
        return description;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?