public enum ID3V2Version extends java.lang.Enum<ID3V2Version>
Modifier and Type | Method and Description |
---|---|
static ID3V2Version |
valueOf(java.lang.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(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 nullCopyright © 2005-2013 java.net. All Rights Reserved.