public enum ID3V2ExtendedGenreTypes extends 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 | Method and Description |
---|---|
String |
getDescription() |
static ID3V2ExtendedGenreTypes |
valueOf(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getDescription()
Copyright © 2005–2020 jthink.net. All rights reserved.