📄 id3v2extendedgenretypes.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -