public enum ID3Version extends Enum<ID3Version>
| Enum Constant and Description |
|---|
ID3v1
The ID3 v1.
|
ID3v1r0
The ID3 v1r0.
|
ID3v1r1
The ID3 v1r1.
|
ID3v2
The ID3 v2.
|
ID3v2r0
The ID3 v2r0.
|
ID3v2r2
The ID3 v2r2.
|
ID3v2r3
The ID3 v2r3.
|
ID3v2r4
The ID3 v2r4.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getMajorVersion()
Gets the major version.
|
int |
getMinorVersion()
Gets the minor version.
|
static ID3Version |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ID3Version[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ID3Version ID3v1
public static final ID3Version ID3v1r0
public static final ID3Version ID3v1r1
public static final ID3Version ID3v2
public static final ID3Version ID3v2r0
public static final ID3Version ID3v2r2
public static final ID3Version ID3v2r3
public static final ID3Version ID3v2r4
public static ID3Version[] values()
for (ID3Version c : ID3Version.values()) System.out.println(c);
public static ID3Version 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 int getMajorVersion()
public int getMinorVersion()
Copyright © 2018. All rights reserved.