public enum ID3V2Version extends Enum<ID3V2Version>
Modifier and Type | Method and Description |
---|---|
static ID3V2Version |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ID3V2Version[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ID3V2Version ID3_V22
public static final ID3V2Version ID3_V23
public static final ID3V2Version ID3_V24
public static ID3V2Version[] values()
for (ID3V2Version c : ID3V2Version.values()) System.out.println(c);
public static ID3V2Version 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 nullCopyright © 2005–2020 jthink.net. All rights reserved.