public enum ID3V2ExtendedGenreTypes extends java.lang.Enum<ID3V2ExtendedGenreTypes>
These are additional genres added in the V2 Specification, they have a string key (RX,CV) rather than a numeric key
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
description |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDescription() |
static ID3V2ExtendedGenreTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ID3V2ExtendedGenreTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ID3V2ExtendedGenreTypes RX
public static final ID3V2ExtendedGenreTypes CR
public static ID3V2ExtendedGenreTypes[] values()
for (ID3V2ExtendedGenreTypes c : ID3V2ExtendedGenreTypes.values()) System.out.println(c);
public static ID3V2ExtendedGenreTypes valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getDescription()
Copyright © 2005-2013 java.net. All Rights Reserved.